04.07.2011, 10:28
TextDrawShowForAll will only show to players who are currently in the server. So when your server starts then it's not visible to anyone because nobody was in the server when it was called.
I suggest simply using TextDrawShowForPlayer, which in the include you're using is TDCDShowForPlayer, for example:
I hope that helps!
I suggest simply using TextDrawShowForPlayer, which in the include you're using is TDCDShowForPlayer, for example:
pawn Код:
public OnPlayerConnect(playerid)
{
TDCDShowForPlayer(playerid);
return 1;
}