14.09.2013, 16:08
If I do like this.
Will it check if the player is pMember 1 and pDuty = 1 too? Or do I need to pur the pDuty after pMember aswell? What I mean is, is this code the same as if I would put
pawn Код:
if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1 && PlayerInfo[playerid][pDuty] == 1)
pawn Код:
if(PlayerInfo[playerid][pMember] == 1 && PlayerInfo[playerid][pDuty] == 1 || PlayerInfo[playerid][pLeader] == 1 && PlayerInfo[playerid][pDuty] == 1)