02.09.2013, 20:08
Hey!
I'm getting a tag mismatch warning thanks to this code:
I've tried to remove the "&& clickedid == INVALID_TEXT_DRAW" part and it works. What am I missing or doing wrong?
I'm getting a tag mismatch warning thanks to this code:
pawn Код:
public OnPlayerClickTextDraw(playerid, Text:clickedid)
{
if(GetPVarInt(playerid, "pTID") == 0 && clickedid == INVALID_TEXT_DRAW) // caused on this line
{
return 1;
}
return 0;
}