14.09.2012, 16:02
eu preciso saber como q eu coloco o comando /admins para quando o player digitar /admins abrir aquela caixa de dialogo informando os admins online,,alguem pode me ajudar,o comando esta aqui:
pawn Код:
dcmd_admins(playerid, params[])
{
#pragma unused params
SendClientMessage(playerid, COLOR_ORANGE, "|Brasil Next Life administracгo presentes-|");
for(new i = 0; i <= HighestID; i++)
{
if(IsPlayerConnected(i))
{
if(Player[i][pAdmin] >= 1 && Player[i][pAdmin] < 8)
{
if(AdminAfk[i] == 1)
{
format(thestring, 128, "(%d) %s (%s) (AFK)",i ,Player[i][pName], AccountName(i));
SendClientMessage(playerid, COLOR_GREEN, thestring);
}
else if(AdminDuty[i] == 1)
{
format(thestring, 128, "(%d) %s (%s) (Em serviзo)",i ,Player[i][pName], AccountName(i));
SendClientMessage(playerid, COLOR_YELLOW, thestring);
}
else if(noevento[i] == true)
{
format(thestring, 128, "(%d) %s (%s) (Em evento)",i ,Player[i][pName], AccountName(i));
SendClientMessage(playerid, COLOR_GREEN, thestring);
}
else if(noteste[i] == true)
{
format(thestring, 128, "(%d) %s (%s) (Em teste)",i ,Player[i][pName], AccountName(i));
SendClientMessage(playerid, COLOR_GREEN, thestring);
}
else if(AdminDuty[i] == 0 && AdminAfk[i] == 0)
{
format(thestring, 128, "(%d) %s (%s)",i ,Player[i][pName], AccountName(i));
SendClientMessage(playerid, COLOR_WHITE, thestring);
}
}
}
}
return 1;
}