Reply to Re: Simple question
If you don't have an account, just leave the password field blank.
DinkC has loops, in this way:
loop:
//do loop stuff here, maybe a counter variable check.
goto loop
But as you might have realised, the first wait(&whatever) in the loop will cause the script to pause and give the engine the change to kill the sprite (and thus the script).
loop:
//do loop stuff here, maybe a counter variable check.
goto loop
But as you might have realised, the first wait(&whatever) in the loop will cause the script to pause and give the engine the change to kill the sprite (and thus the script).