Posted 15 April 2017 - 01:53 PM
Hello so i want to make it count down like something like this but it dosen't work
a = 4
repeat
b = a - 1
print( b )
until b == 1
But it will spam 3 how can i make it print "3" then 2 then 1
Update: Switch all the b to a and it works
a = 4
repeat
b = a - 1
print( b )
until b == 1
But it will spam 3 how can i make it print "3" then 2 then 1
Update: Switch all the b to a and it works
Edited on 15 April 2017 - 12:37 PM