I have a small question. I have some code that loads up some rooms at the beggining of the game, and it works fine if I use tickcount (since it's on the beggining), but I was trying to move this code so I could use it later by replacing it with a loop. So I'd like to know what's the difference between this:
For "t" 1 to 30 do -----
And this:
If tickcount > 30 do -----
Aren't both supposed to loop 30 times? The "for" got stuck on an infinite loop when I tried it out. The way I found to fix it was to create a variable and add 1 to it if it's under 30 (since the code will update every tick).