Reply to Re: i could use some help
If you don't have an account, just leave the password field blank.
Here's a sample script for a timer. Pretty simple actually.
void main ()
{
script_attach(1000);
//number of seconds on the timer
int &count = 60;
int #
loop:
if (&count > 0)
{
if (&count == 1)
&num = say_xy("&count second remaining",0,0);
else
&num = say_xy("&count seconds remaining",0,0);
sp_kill(&num,1000);
wait(1000);
&count -= 1;
goto loop;
}
say_stop("Oh no, I'm out of time!",1);
kill_this_task();
}
void main ()
{
script_attach(1000);
//number of seconds on the timer
int &count = 60;
int #
loop:
if (&count > 0)
{
if (&count == 1)
&num = say_xy("&count second remaining",0,0);
else
&num = say_xy("&count seconds remaining",0,0);
sp_kill(&num,1000);
wait(1000);
&count -= 1;
goto loop;
}
say_stop("Oh no, I'm out of time!",1);
kill_this_task();
}