The Dink Network

Reply to Re: Another problem

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:
 
 
February 24th 2003, 11:43 AM
wizardb.gif
Kyle
Peasant He/Him Belgium
 
To have the script work only once, initialize a global variable in main.c and put an if statement in front of the lines you want to have executed only once, like this :
void main (void)
{
if (&seen == 0)
{
freeze(1);
say_stop("What the hell?", 1);
wait(200);
unfreeze(1);
&seen = 1;
}
kill_this_task();
}

WDE is pretty easy to master, just experiment with it. There's little you can do wrong and it even has an undo button. Changing a sprite into a purple bonca is more complex than the script I just showed you. I suggest you look for the script in which bishop Nelson changes into a slayer, that should help you out.