24.07.2016, 14:31
It is showing the tag mismatch error because you are trying a "Global TextDraw" function on a "Player TextDraw"
Download this include: https://sampforum.blast.hk/showthread.php?tid=575261
Here is the code for you:
Download this include: https://sampforum.blast.hk/showthread.php?tid=575261
Here is the code for you:
PHP код:
public OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid)
{
if(IsValidPlayerTextDraw(playerid, playertextid /*your textdraw id*/))
{
//Do your work here
}
return 1;
}