10.09.2010, 07:14
Wanted level isn't a float. (Unless you plan on giving players wanted level 2.000001 or something like that)
On Topic:
The < and > means is bigger than, or less than. So "wanted < 3" means: wanted is less than 3. So any number below the value of 3 will give true. Using "wanted <= 3" means 3 AND below will give a true statement.
so therefor
is what your looking for
On Topic:
The < and > means is bigger than, or less than. So "wanted < 3" means: wanted is less than 3. So any number below the value of 3 will give true. Using "wanted <= 3" means 3 AND below will give a true statement.
so therefor
pawn Код:
if(wanted < 3)

