as I provided in the title, my x and y coords dont work properly and I am aware that it is because my programming 'skills'.
The rest of codes work, except line 113:
Thanks in advance as always
Engineer
Posted 07 March 2013 - 03:38 AM
Posted 07 March 2013 - 03:57 AM
if x > 42 and 50 < x and y == 1 thenChecks if x is greater than 42 and that 50 is less than x. so that means that only 51 will trigger it. since 51 is both larger than 42 and 50. So make it this and it will be fine.
if x > 42 and x < 50 and y == 1 then
Posted 07 March 2013 - 04:02 AM
Posted 07 March 2013 - 07:53 PM
0 members, 1 guests, 0 anonymous users