Reply to Re: Another problem
If you don't have an account, just leave the password field blank.
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.
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.