24.08.2011, 09:48
pawn Code:
dcmd_admins(playerid,params[])
{
#pragma unused params
new string[256], result[256];
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(Variables[i][Level] >0 && Variables[i][Level] < 10)
{
format(string, sizeof(string), "{FF0000}ADMINISTRATOR: %s ID[%d]{15D4ED}[Level %d]\n", RealName[i],playerid, Variables[i][Level]);
strcat(result, string, sizeof(result));
}
}
ShowPlayerDialog(playerid, 5591, 0, "{1B1BE0}Online Admins:", result, "Done", "");
return 1;
}
Help me please