17.03.2013, 20:54
Olhe esse comando..
Tem como vocкs me ajudarem a passar ele para aparecer no dialogo?
Obrigado.
pawn Код:
if(!strcmp(cmdtext, "/admins", true))
{
SendClientMessage(playerid,0x00FF40AA, ".:: - Administradores Online - ::.");
new count=0;
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i)){
if(admin[i]){
new str[256];
new pname[24];
GetPlayerName(i, pname, 24);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(pAdmin[i] == 1){
format(str,sizeof(str),"%s (%d) :: {3225EB}[Helper]", pname,i);
}
if(pAdmin[i] == 2){
format(str,sizeof(str),"%s (%d) :: {3225EB}[Adminstrador]", pname,i);
}
if(pAdmin[i] == 3){
format(str,sizeof(str),"%s (%d) :: {3225EB}[Administrador Chefe]", pname,i);
}
if(pAdmin[i] == 4){
format(str,sizeof(str),"%s (%d) ::{3225EB} [Sub Dono]", pname,i);
}
if(pAdmin[i] == 5){
format(str,sizeof(str),"%s (%d) :: {3225EB}[Dono]", pname,i);
}
SendClientMessage(playerid, 0x0080FFAA, str);
count++;
}
}
}
if(count == 0)
{
SendClientMessage(playerid, Vermelho, "(ERRO) Nгo hб administradores online no momento");
}
return 1;
}
Obrigado.