30.07.2018, 22:07
Ao executar o comando /admins, aparece SERVER: Unknowm Command
Cуdigo do /Admins:
Cуdigo do /Admins:
pawn Код:
if(!strcmp(cmdtext, "/admins", true))
{
new Counts;
new const Ranks[][] =
{
"{FFFF00}Ajudante",
"{FF8C00}Moderador(a)",
"{009ACD}Administrador(a)",
"{FF0000}Sub-Staff",
"{03FF35}Staff{FFFFFF}"
};
new const PlayerAfk[][] =
{
"Online",
"{FF0000}Ausente"
};
new STR[9999];
new STX[3005], adminon;
format(STR, sizeof(STR), "Admin\tCargo\tStatus\n");
for(new x = 0, y = GetMaxPlayers(); x != y; x++)
{
if(!IsPlayerConnected(x)) continue;
if(admin[x])
{
new NickName[25];
GetPlayerName(x, NickName, 25);
if(pAdmin[x] >= 1 && pAdmin[x] <= 5)
{
format(STR, 500, "%s{FFFFFF}%s {FFFFFF} \t%s{FFFFFF} {FFFFFF}\t{00A600}%s{FFFFFF}\n", STR, NickName, Ranks[pAdmin[x] - 1], PlayerAfk[AFK[x] - 0]);
adminon++;
}
Counts++;
}
}
//teste
if(adminon == 0)
{
ShowPlayerDialog(playerid, 500, DIALOG_STYLE_MSGBOX, "{FFFFFF}Admins [ {FF0000}0{FFFFFF} ]", "{FF0000}Nгo hб membros da Administraзгo online no momento !", "Fechar", "");
PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
}
else if(adminon == 1)
{
ShowPlayerDialog(playerid, 128, DIALOG_STYLE_TABLIST_HEADERS, "{FFFFFF}Admins Online [ {328E0A}1 {FFFFFF}]", STR, "Fechar", "");
PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
}
else
{
//teste
format(STX, 500, "{FFFFFF}Admins Online [ {328E0A}%d{FFFFFF} ]", adminon);
ShowPlayerDialog(playerid, 500, DIALOG_STYLE_TABLIST_HEADERS, STX, STR, "Fechar", "");
PlayerPlaySound(playerid, 1057, 0.0, 0.0, 0.0);
}
return 1;
}