SA-MP Forums Archive
[Ajuda] Com pMember - 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] Com pMember (/showthread.php?tid=298637)



[Ajuda] Com pMember - arakuta - 21.11.2011

Estou usando as organizaзхes 1 e 3 como Cops...

E para os comandos de COP's Estou colocando estas condiзхes

pawn Код:
if(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1)
            {
                if(PlayerInfo[playerid][pMember] != 3 || PlayerInfo[playerid][pLeader] != 3)
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um Oficial !");
                    return 1;
                }
            }
sу que sendo ou nгo membro/lider das ORGS 1 e 3 eu consigo usar o /gov, retorna a mensagem vocк nгo й um oficial.


Re: [Ajuda] Com gTeam - Pharrel - 21.11.2011

pawn Код:
if(PlayerInfo[playerid][pMember] != 1 && PlayerInfo[playerid][pLeader] != 1)
            {
                if(PlayerInfo[playerid][pMember] != 3 && PlayerInfo[playerid][pLeader] != 3)
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й um Oficial !");
                    return 1;
                }
            }
vc deve usar '&&' nesse caso.


Re: [Ajuda] Com pMember - arakuta - 21.11.2011

Deu certinho... +rep

E ja entendi por que nгo poderia ser ||... Obg