22.11.2013, 14:40
I'm not sure if this line here is doing as you intended
I think it should read
Try running the following code on this website.
http://slice-vps.nl:7070/
Output: Check 1
So basically what I'm saying is if one of these checks were true
The animation check doesn't mean anything.
pawn Code:
if(Pos_x <= -0.800000 || Pos_y <= -0.800000 || Pos_z <= -0.800000 && anim == 1008)
pawn Code:
if((Pos_x <= -0.800000 || Pos_y <= -0.800000 || Pos_z <= -0.800000) && anim == 1008)
http://slice-vps.nl:7070/
pawn Code:
#include <a_samp>
main() {
new a = 1, b = 2, c = 3;
if(a == 1 || b < 3 && c == 4) print("Check 1");
if((a == 1 || b < 3) && c == 4) print("Check 2!");
return 1;
}
So basically what I'm saying is if one of these checks were true
pawn Code:
Pos_x <= -0.800000 || Pos_y <= -0.800000