The Dink Network

Reply to Re: New D-Mod: A False Hero

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:
 
 
July 28th 2010, 03:54 AM
anon.gif
Random
Ghost They/Them
 
Yes, the script is indeed clear of syntax errors. However, it's not clear of logic errors: once the die() procedure is executed, it has a little time to do its work before the script will be terminated by the engine.
To fix this, put
script_attach(1000);

before the first say_stop() in your die() procedure. Also put
kill_this_task();

right before the end of the die() procedure, so that the script is terminated when its done. It should work now.