04.01.2011, 11:10
pawn Код:
if (!strcmp("/admins", cmdtext, true) )
{
for(new i = 0; i <= MAX_PLAYERS; i++)
{
GetPlayerName(i, nome, sizeof(nome) );
if (logado[i] == true)
{
if (informacoes[i][leveladministrativo] == 1)
{
format(texto, sizeof texto, "Colaborador: %s", nome);
}
ShowPlayerDialog(playerid, 3, DIALOG_STYLE_MSGBOX, "Administradores", texto, "Fechar", "");
}
}
return 1;
}