26.11.2014, 19:05
Hello, i have been having to problem, when i use /admins it shows the user who typed the command as the admin, but no other admin shows on there, don't get where it's gone wrong.
Код:
CMD:admins(playerid, params[]) { foreach(Player, i) { new string[256], name[MAX_PLAYER_NAME]; GetPlayerName(i, name, sizeof(name)); if(pInfo[i][Adminlevel ] > 0) { format(string, sizeof(string), "%s %s\n", AdminLevelName(playerid), name); ShowPlayerDialog(playerid, DIALOG_ONLINE_ADMINS, DIALOG_STYLE_MSGBOX, "Admins online", string, "Close", ""); } } return 1; }