Reply to Re: unfreezing when leaving (almost rhymes!)
If you don't have an account, just leave the password field blank.
I always do it like this:
void talk( void )
{
freeze(1);
freeze(¤t_sprite);
choice_start()
"huh?
"blah"
"Leave"
choice_end()
if (&result == 1)
{
say_stop("poop", 1);
wait(200);
say_stop("`6shut up.", ¤t_sprite);
wait(200);
}
if (&result == 2)
{
say_stop("...", 1);
wait(200);
say_stop("`6i guess you'd like to know what the real content of this script is, right?", ¤t_sprite);
wait(200);
}
unfreeze(1);
unfreeze(¤t_sprite);
return;
}
I know the return; is unnecessary, but I still add it for some reason.
void talk( void )
{
freeze(1);
freeze(¤t_sprite);
choice_start()
"huh?
"blah"
"Leave"
choice_end()
if (&result == 1)
{
say_stop("poop", 1);
wait(200);
say_stop("`6shut up.", ¤t_sprite);
wait(200);
}
if (&result == 2)
{
say_stop("...", 1);
wait(200);
say_stop("`6i guess you'd like to know what the real content of this script is, right?", ¤t_sprite);
wait(200);
}
unfreeze(1);
unfreeze(¤t_sprite);
return;
}
I know the return; is unnecessary, but I still add it for some reason.