08.02.2014, 15:48
mJob[i] == 13 || 14 || 15 || 16 || 17
That kind of things wont work at least on PAWN, unless you use definitions previous to applying them.
You have to check individually ...
... or do as stated in the previous post, and by the way:
Wont work. Though, you can do:
Greater or equal than 1 AND less or equal than 7.
That kind of things wont work at least on PAWN, unless you use definitions previous to applying them.
You have to check individually ...
Код:
mJob[i] == 13 || mJob[i] == 14 || ...
Wont work. Though, you can do:
Код:
(1 <= mJob[i] <= 7)