Alguém mim ajuda? não estou achando o erro para o aviso aparecer.
Como variavel está definida:
OnPlayerClickTextDraw (no modulo)
Não era para dar warning, e não estou entendo. alguem ajuda?
Como variavel está definida:
PHP Code:
new Text:Text[72];
PHP Code:
Text[37] = TextDrawCreate(210.000000, 168.000000, "1");
TextDrawBackgroundColor(Text[37], 255);
TextDrawFont(Text[37], 2);
TextDrawLetterSize(Text[37], 0.469999, 1.200000);
TextDrawColor(Text[37], -1);
TextDrawSetOutline(Text[37], 0);
TextDrawSetProportional(Text[37], 1);
TextDrawSetShadow(Text[37], 1);
TextDrawSetSelectable(Text[37], 1);
PHP Code:
hook OnPlayerClickTextDraw(playerid, clickedid)
{
if(clickedid == Text[37]) // local do warning
{
}
return 1;
}