The Dink Network

Reply to Re: Help Needed With D-MOd!!!

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:
 
 
November 15th 2009, 05:50 AM
slimeg.gif
metatarasal
Bard He/Him Netherlands
I object 
Yeah, if you use a say_stop() command in a void die() procedure you kill the procedure, so the unfreeze command won't be executed. Easiest way to fix this is to change the die procedure into this:

&pillcount += 1;

if (&pillcount == Numberofpills) 
{
script_attach(0);
 freeze(1);
 say_stop("Blah, blah, blah", 1);
 unfreeze(1);
kill_this_task();
}