Poste o resultado.
PHP код:
if( !strcmp( cmd, "/admins", true ))
{
new
quant,
s[ 200 ],
ss[ 200 ],
iname[ 20 ]
;
foreach( Player, i )
{
if( pAdmin[ i ] >=4 || guardiao[ i ] == 1 || PlayerInfo[ i ][ OrganizadorA ] == 1)
{
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++;
}
ShowPlayerDialog( playerid, DIALOGADMINS, DIALOG_STYLE_TABLIST_HEADERS, "Membros da equipe online:", ss, "Fechar", "");
}
if( quant == 0 ) return ShowPlayerDialog( playerid, DIALOGADMINSOFF, DIALOG_STYLE_TABLIST_HEADERS, "Membros da equipe online:", "Nгo hб membros da equipe online no momento.", "Fechar", "");
return 1;
}