Reply to Script Freezes
If you don't have an account, just leave the password field blank.
My script keeps freezing right after Dink makes the choice(his only choice before story is 4)to tell his king he hasn't found Cyrus.
void talk(void)
{
freeze(1);
freeze(¤t_sprite)
choice_start()
"Tell him you haven't found Cyrus yet"
(&story == 4) "Give him the potion"
choice_end()
if(&result = 1)
{
say_stop("I can't find Cyrus,your majesty.",1);
say_stop("`3Well,keep trying Smallwood.",¤t_sprite);
unfreeze(1);
unfreeze(¤t_sprite);
}
if(&result = 2)
{
say_stop("I found Cyrus your majesty,he gave me this potion.",1);
say_stop("`3Well,hand it over Smallwood.",¤t_sprite);
drop_item("item-potion",460, 17);
external("morph","make")
say_stop("Well,Dink Smallwood saves the day...again.",1);
say_stop("`3Nicely done,I knew I could count on you.",¤t_sprite);
unfreeze(1);
unfreeze(¤t_sprite);
}
return;
}
void talk(void)
{
freeze(1);
freeze(¤t_sprite)
choice_start()
"Tell him you haven't found Cyrus yet"
(&story == 4) "Give him the potion"
choice_end()
if(&result = 1)
{
say_stop("I can't find Cyrus,your majesty.",1);
say_stop("`3Well,keep trying Smallwood.",¤t_sprite);
unfreeze(1);
unfreeze(¤t_sprite);
}
if(&result = 2)
{
say_stop("I found Cyrus your majesty,he gave me this potion.",1);
say_stop("`3Well,hand it over Smallwood.",¤t_sprite);
drop_item("item-potion",460, 17);
external("morph","make")
say_stop("Well,Dink Smallwood saves the day...again.",1);
say_stop("`3Nicely done,I knew I could count on you.",¤t_sprite);
unfreeze(1);
unfreeze(¤t_sprite);
}
return;
}