Reply to Re: Void die bugs.
If you don't have an account, just leave the password field blank.
This is easy. The whole procedure won't run because the sprite is killed the next update and so the script stops, never getting to your unfreeze command.
You need to put that code into an external .c file and call that in the die() procedure. Like this:
and in that file you put your previous code under its void main().
Hope that helps
You need to put that code into an external .c file and call that in the die() procedure. Like this:
void die () { external("file"); }
and in that file you put your previous code under its void main().
Hope that helps
