Open GoogleCodeExporter opened 8 years ago
The For-statement can only use steps that are whole numbers. So you can't use
steps like 1.5 or 0.1 in your case. If you want the loop to run longer, you
must increase the limit. In your case, you should increase the limit to 500,
the variable you want to reach to 250 (and maybe you should change print(i) to
print(25) if you still want the program to print that number) and set the step
back to 1.
Original comment by timberin...@gmail.com
on 7 Sep 2012 at 9:39
this has nothing to do with luaforwindows, but is your usage of lua itself
for i=1,50,0.1
do
if math.abs(i-25)<0.001 then -------
print(i)
end
end
Original comment by d.ledent...@gmail.com
on 23 Oct 2012 at 7:44
Original issue reported on code.google.com by
nitro555
on 26 Aug 2012 at 12:40