02-27-2012, 06:49 PM
This seems to work backwards, giving division instead of remainder.
If you change the dim i as float to dim i as uinteger, it works perfectly, pausing each screen.
Code:
dim i as float
For i = 1 to 255
print int i
if i mod 22=0 then
pause 1
pause 0
cls
end if
next i
If you change the dim i as float to dim i as uinteger, it works perfectly, pausing each screen.