Reply to Re: spawn and stuff
If you don't have an account, just leave the password field blank.
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.
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.