08.02.2012, 00:45
pawn Код:
new Text:LOL[MAX_PLAYERS];
//OnGameModeInit
for(new i = 0; i < MAX_PLAYERS; i++)
{
LOL[i] = TextDrawCreate(......
}
//OnPlayerConnect
new LOL2[7];
format(LOL2,sizeof(LOL2),"%d",playerid);
TextDrawSetString(LOL[playerid],LOL2);
TextDrawShowForPlayer(playerid, LOL[playerid]);