27.12.2014, 08:54
Then assign the textdraw to a variable for each player.
Then you can put this under OnPlayerConnect
Then show it for each player
Alternatively, you can use these...
https://sampwiki.blast.hk/wiki/TextDrawCreate
https://sampwiki.blast.hk/wiki/TextDrawShowForAll
if you want it to be seen by the whole server.
pawn Код:
new PlayerText:TextDrawName[MAX_PLAYERS];
pawn Код:
TextDrawName[playerid] = CreatePlayerTextDraw(...);
pawn Код:
PlayerTextDrawShow(playerid, TextDrawName[playerid]);
https://sampwiki.blast.hk/wiki/TextDrawCreate
https://sampwiki.blast.hk/wiki/TextDrawShowForAll
if you want it to be seen by the whole server.