The Dink Network

Reply to Choice Error

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:
 
 
July 28th 2010, 02:51 PM
anon.gif
Absolution
Peasant They/Them
The Dark Lord of the DN. 
void main ( void )
{
say("`8Oh, Gawd. It's him..." , &current_sprite);
}

void talk ( void )
{
freeze(1)
freeze(&current_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." , &current_sprite);
say_stop("You she dog! Why not do anything about it!?" ,1);
say_stop("`8Well, they are really strong..." , &current_sprite);
say_stop("Strong!? A pillbug?! Pah!" ,1);
say_stop("`8..." , &current_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..." , &current_sprite);
unfreeze(1)
unfreeze(&current_sprite)
}

if (&result == 2)
{
say_stop("Hey, baby. You wanna go into my room for -" ,1);
say_stop("`8Whatever, Dink!" , &current_sprite);
unfreeze(1)
unfreeze(&current_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?