Help about Job system.
#3

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 ...

Код:
mJob[i] == 13 ||  mJob[i] == 14 || ...
... or do as stated in the previous post, and by the way:

Quote:
Originally Posted by judothijs
Посмотреть сообщение
Job 1 to 7 would then become if(mJob[i] >= 1 && <= 7).
Wont work. Though, you can do:

Код:
(1 <= mJob[i] <= 7)
Greater or equal than 1 AND less or equal than 7.
Reply


Messages In This Thread
Help about Job system. - by [WH]Marcos - 08.02.2014, 14:49
Re: Help about Job system. - by judothijs - 08.02.2014, 15:02
Re: Help about Job system. - by CuervO - 08.02.2014, 15:48
Re: Help about Job system. - by [WH]Marcos - 08.02.2014, 16:21

Forum Jump:


Users browsing this thread: 1 Guest(s)