22.04.2010, 17:56
pawn Код:
SendClientMessage(playerid, COLOR, "Admins online:");
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(IsPlayerAdmin(i))
{
new
string[36],
pName[24];
GetPlayerName(i, pName, 24);
format(string, sizeof(string), "- %s (ID:%d)", pName, i);
SendClientMessage(playerid, COLOR, string);
}
}