Quote:
Originally Posted by Mauzen
The || means or, so you check if gTeam[playerid] is not 2 or not 3.
This will always be true, because it is for example 2, PlayerInfo[playerid][pMember] != 3 will return 1 so the whole line is true.
Replace the || with && (and)
|
Thanks it worked, and thanks to everyone else that tried helping.