The Dink Network

Reply to Re: Yo're dead.. (that's your que!)

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:
 
 
June 18th 2003, 12:01 AM
wizardg.gif
Paul
Peasant He/Him United States
 
It's not the actual length that matters. The thing is you can't have any kind of deley in a die procedure (including say_stop) or by the time it's done waiting the thing is dead and the script is killed.

Try something like this:

//a new script deadnow.c
void main( void )
{
freeze(1);
say_stop("Okay, now what??",1);
wait(500);
say_stop("`#Hmmm...",1);
wait(500);
say_stop("`#I'll try to make a plan here, you just, uh... wander around a bit", 1);
wait(500);
say_stop("(ehh.. She'll make the plan... like we'll ever get outta here with her in charge...) OK!",1);
screenlock(0);

&story = 1;
kill_this_task();
//Don't forget that part.
}

Then in the die procedure, just do:
spawn("deadnow");