05.11.2017, 13:34
When you do:
and you're not A but you're B, then it will still return the error. The operator should be logical AND:
if player is neither A nor B, return the error.
pawn Код:
if (!A || !B)
pawn Код:
if (!A && !B)