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 20th 2003, 10:52 AM
girl.gif
joshriot
Peasant They/Them United States
keep it real 
i also had to change this:

if (&ctdown < -200)
{
goto kill;
}
wait(1);
&ctdown -= 1;
wait(1000);
if (&ctdown < 1)
{
if (&ctdown > -1)
{
goto done;
}
}

without that nested if statement, the loop would go to done even though the first one told it to go to kill. i dont know why... but anyway it works so thanks.