Reply to Unfreezing after say_stop
If you don't have an account, just leave the password field blank.
Why won't Dink unfreeze after choosing "yes" in this script? If I change the last say_stop(); to just say(); then it works.
void talk (void)
{
freeze(1);
say_stop("Ooh, a mushroom!", 1);
choice_start()
set_y 240
set_title_color 15
title_start()
Eat it?
title_end()
"Yes"
"No"
choice_end()
if (&result == 1)
{
//playsound
sp_brain_parm(¤t_sprite, 10);
sp_brain(¤t_sprite, 12);
sp_timing(¤t_sprite, 0);
int &hold = sp_editor_num(¤t_sprite);
if (&hold != 0)
editor_type(&hold, 1);
say_stop("Word", 1);
}
unfreeze(1);
}
void talk (void)
{
freeze(1);
say_stop("Ooh, a mushroom!", 1);
choice_start()
set_y 240
set_title_color 15
title_start()
Eat it?
title_end()
"Yes"
"No"
choice_end()
if (&result == 1)
{
//playsound
sp_brain_parm(¤t_sprite, 10);
sp_brain(¤t_sprite, 12);
sp_timing(¤t_sprite, 0);
int &hold = sp_editor_num(¤t_sprite);
if (&hold != 0)
editor_type(&hold, 1);
say_stop("Word", 1);
}
unfreeze(1);
}







