Reply to Re: Dink Smallwood and the City of the Dead
If you don't have an account, just leave the password field blank.
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!!.", ¤t_sprite);
wait(300);
unfreeze(1);
void talk( void )
freeze(¤t_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(¤t_sprite);
return;
}
if (&result == 2)
{
freeze(1);
// Very big talk
}
else
{
unfreeze(1);
unfreeze(¤t_sprite);
return;
}
}






