20.05.2010, 06:04
Okay so basically I need help with this :
How can I get the measurement of z == 1.51 and above
and z == 1.50 and below. If you know what I mean![Wink](images/smilies/wink.png)
Because, for example a command will only work on the z == 1.51 and onwards
and it won't work z == 1.50 and below, but in my case, it the commands only
work dead on spot of z == 1.51. and z == 1.50. I want it to make the commands
work for z == 1.51 and above and not work on z == 1.50 below.
pawn Код:
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if(z == 1.51)
if(z == 1.50)
and z == 1.50 and below. If you know what I mean
![Wink](images/smilies/wink.png)
Because, for example a command will only work on the z == 1.51 and onwards
and it won't work z == 1.50 and below, but in my case, it the commands only
work dead on spot of z == 1.51. and z == 1.50. I want it to make the commands
work for z == 1.51 and above and not work on z == 1.50 below.