The Dink Network

Reply to Re: Scripting and WDE questions.

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
September 2nd 2007, 06:53 PM
spike.gif
In Dink, some time needs to pass inside the loop. In your script, the wait(); command will run only if Dink is unfrozen, effectively freezing the entire game when he's not.

loop:
wait(1);
goto loop;

works (although such a rapid loop may be laggy)

loop:
goto loop;

doesn't.