13.12.2016, 21:48
Exemplo
Code:
if(!strcmp(cmd, "/admins", true)) { new string[200], rank[21], count; // if "200" is not enough and cut the text out in case you have many admins online, increase it. for(new i; i<MAX_PLAYERS; i++) if(IsPlayerConnected(i)) //foreach(new i : Player) { switch (PInfo[i][AdminLevel]) { case 0: continue; case 1: rank = "Moderator"; case 2: rank = "Junior Administrator"; case 3: rank = "Senior Administrator"; case 4: rank = "Head Administrator"; case 5: rank = "Server Owner"; } format(string, sizeof(string), "%s{FFFFFF}%s: {1B8AE4}%s(%d)", string, rank, PlayerName(i), i); ++count; } if (!count) return SendClientMessage(playerid, -1, "No admins online"); else ShowPlayerDialog(playerid, 364, DIALOG_STYLE_MSGBOX, "Server staff currently online:", string, "Close", ""); return 1; }