The Dink Network

Reply to Unfreezing after say_stop

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:
 
 
November 18th 2007, 09:29 PM
dinkdead.gif
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(&current_sprite, 10);
sp_brain(&current_sprite, 12);
sp_timing(&current_sprite, 0);
int &hold = sp_editor_num(&current_sprite);
if (&hold != 0)
editor_type(&hold, 1);

say_stop("Word", 1);
}

unfreeze(1);
}