04.12.2014, 13:13
Create one textdraw where names will be showed. And my question is, is this textdraw display everytime or when player use command?
Something like that.
Код:
new String[256];
new PlayerName[MAX_PLAYER_NAME];
for(new A,B = GetMaxPlayers(); A < B; A++)
{
if(IsPlayerConnected(A) && IsPlayerVip(A)) format(String,sizeof(String),"%s%s\n",String,PlayerName);
}
TextDrawSetString(TextDrawId,String);

