The Dink Network

Reply to Re: spawn and stuff

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:
 
 
August 21st 2003, 12:24 AM
wizardg.gif
Paul
Peasant He/Him United States
 
It looks like you moved
if (&ctdown < 1)
{
goto done;
}

too far up.
Try to visualize this as a loop:
start:
//killtest
wait(1000);
//donetest
goto start;

donetest is still essentially before killtest because anything outside the script happens during the wait(1000) and then it hits the done test before it goes back up to the top and hits the kill test.

Also, why use if < 1 and if > -1 when if == 0 has the same effect?