[Ajuda] Comando nao funciona - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Comando nao funciona (
/showthread.php?tid=600676)
Comando nao funciona -
VinnyScript - 11.02.2016
o comando so aparece 1 adm online sendo q tem 6 adminstradores online como posso arruma ?
Код:
CMD:admins(playerid, params[])
{
if(pLogado[playerid] == false) return SendClientMessage(playerid, CorErro, "Vocк precisa fazer Login primeiro.");
SendClientMessage(playerid, 0x4682B4FF, "Administradores Online:");
//
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] > 0 && AparecendoNoAdmins[i] == true && pJogando[i] == false)
{
switch(PlayerInfo[i][pAdmin])
{
case 1: Motivo = "TEMPORБRIO";
case 2: Motivo = "LEVEL 2";
case 3: Motivo = "LEVEL 3";
case 4: Motivo = "LEVEL 4";
case 5: Motivo = "MASTER";
case 6: Motivo = "MБXIMO";
case 7: Motivo = "DONO";
}
format(Str, 256, "%s [%s]", pNomeOriginal[i], Motivo);
SendClientMessage(playerid, CinzaClaro, Str);
}
}
return 1;
}
Re: Comando nao funciona -
zSuYaNw - 11.02.2016
Seu comando estб correcto, verifique se estas condiзхes estгo corretas tambйm
pawn Код:
AparecendoNoAdmins[i] == true && pJogando[i] == false
Acredito que seja somente isso.
Re: Comando nao funciona -
VinnyScript - 11.02.2016
sim esta correto zSuYaNw
Re: Comando nao funciona -
Derritee1001 - 11.02.2016
Tenta colocar isso:
Код:
if(pLogado[playerid] == true)
No lugar disso:
Код:
if(pLogado[playerid] == false)