01.01.2015, 13:06
i finish create this textdraw and how to make this textdraw work ?
//add this at onplayerconnect
TogglePlayerSpectating(playerid, true);
SetTimerEx("Delay", 5000, false, "i", playerid);
//add after all call backs
forward Delay(playerid);
public Delay(playerid)
{
TogglePlayerSpectating(playerid, false);
return 1;
}