Reply to Re: Help Needed With D-MOd!!!
If you don't have an account, just leave the password field blank.
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();
}





