04.01.2011, 11:20
tenta assim:
Se der unknown command, й por causa de algum return ou chave. Ou ate que vc adicionou: #include <zcmd>. Que bloqueia o strcmp
pawn Код:
if(!strcmp(cmdtext,"/admins",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;
}