The Dink Network

Reply to Re: Dink Smallwood and the City of the Dead

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:
 
 
October 22nd 2007, 01:55 PM
knightgl.gif
CastMan
Peasant He/Him Brazil
Some day I'll finish my mod... Some day... 

Really?? I've liked the healthbars, I'm thinking about make some cahnges at them, I'll send a new screen with the new healthbars, later...

But now I need some help with this script:

When I choose the option 1, it work well, but when I choose the option 2, nothing happens.
I've only posted here because I think they are equal, could someone help me??

void main( void )
{
freeze(1);
say_stop("`5Hello stranger!!.", &current_sprite);
wait(300);
unfreeze(1);


void talk( void )

freeze(&current_sprite);
choice_start();
set_y 240
set_title_color 5
title_start();
"May I help you??"
title_end();
"Option 1"
"Option 2"
"Leave"
choice_end();

if (&result == 1)
{
freeze(1);

// Talk

}
else
{

unfreeze(1);
unfreeze(&current_sprite);

return;
}

if (&result == 2)
{
freeze(1);

// Very big talk

}
else
{

unfreeze(1);
unfreeze(&current_sprite);

return;
}

}