Nгo testei...
PHP код:
if(strcmp(cmd, "/admins", true)==0)
{
new s[200], ss[200], iname[20], bool:conectado = false;
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(pAdmin[i] >=4 || guardiao[i] == 1 || PlayerInfo[i][OrganizadorA] == 1)
{
conectado = true;
GetPlayerName(i, iname, 20);
format(s, sizeof(s), "Nick[ID]\tCargo\n%s[%d]\t%s\n", iname, i, cargo(i));
strcat(s, ss);
quant++;
}
}
}
if(conectado == true) return ShowPlayerDialog(playerid, DIALOGADMINS, DIALOG_STYLE_TABLIST_HEADERS, "Membros da equipe online:", ss, "Fechar", "Fechar");
if(conectado == false) return ShowPlayerDialog(playerid, DIALOGADMINSOFF, DIALOG_STYLE_TABLIST_HEADERS, "Membros da equipe online:", "Nгo hб membros da equipe online no momento.", "Fechar", "Fechar");
return 1;
}