Reply to Choice Error
If you don't have an account, just leave the password field blank.
void main ( void )
{
say("`8Oh, Gawd. It's him..." , ¤t_sprite);
}
void talk ( void )
{
freeze(1)
freeze(¤t_sprite)
choice_start();
"Ask about the Farm"
"Act like a dick"
choice_end();
if (&result == 1)
{
say_stop("What's new with my farm?" ,1);
say_stop("`8Lots of pillbugs are eating away at it." , ¤t_sprite);
say_stop("You she dog! Why not do anything about it!?" ,1);
say_stop("`8Well, they are really strong..." , ¤t_sprite);
say_stop("Strong!? A pillbug?! Pah!" ,1);
say_stop("`8..." , ¤t_sprite);
say_stop("I gotta do everything around here!" ,1);
say_stop("Don't I!?" ,1);
wait(200)
say_stop("DON'T I!?" ,1);
say_stop("`8Yes, Dink. You do..." , ¤t_sprite);
unfreeze(1)
unfreeze(¤t_sprite)
}
if (&result == 2)
{
say_stop("Hey, baby. You wanna go into my room for -" ,1);
say_stop("`8Whatever, Dink!" , ¤t_sprite);
unfreeze(1)
unfreeze(¤t_sprite)
}
The first choice, after it it is done, freezes the game. The last bit of text is frozen there and nobody moves. What's this all about?






