What i am trying to do is make the numbers increase 1 at a time, depending on how big the number is , it's speed will be affected.
Right now if i have 30 as an autonumberadded to the main games number, it just goes 30,60,90 in 3 seconds, and so on. Whereas i want it to go from 1,2,3,4 all the way to 90 in 3 seconds and so on.
I've been messing with it all day and haven't had any success.I did get it to work, but not perfectly.
if Timer() >= startTime + 1
for i= 1 to 30
games = games + 1
settextstring(txt, "Games Owned: " + str(games))
print(screenFPS())
sync()
startTime = timer()
next i
endif
I am using a 1 second timer() command to auto increaes the number every seocnd by 30, i made a forloop which increased the main Games count by 30, i had to use the sync() command to make all the numbers appear 30 times, however the problem is that it doesn't update continuously, it's making short pauses every 1 second ( i think the 2 sync()'s are confilicting), so any key presses/button presses freeze for 1 second or don't work at all until that 1 second is over.
Any ideas you guys have?