The Dink Network

Reply to Re: .C

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:
 
 
August 13th 2007, 11:11 AM
pillbug.gif
pillbug
Peasant He/Him United States
Love! True love! 
Oh, and one more scripting problem I found: Whenever I do a menu,
with like 3 or more questions, all of the options (including leave) say the same thing as the first option. Here is an example right out of my story file:

void talk(void)
{
freeze(1)
choice_start();
"Introduce Yourself"
"What Is This Place?"
"Who are you?"
"Ask For Him To Teach You Wisdom"
"Leave"
choice_end();

if(&result==1)
{
say_stop("Hello. I am Dink, supreme ruler of this dmod. Who are you?", 1);
wait(200);
say_stop("`4Me Henry. Me smash yer bones for yoo?", &current_sprite);
wait(200);
say_stop("No thanks, Henry.",1);
unfreez(1)
}

if(&result2==)
{
say_stop("What is this place?",1);
wait(200);
say_stop("`4This house.", &current_sprite);
wait(200);
say_stop("I know, but what is this area?",1);
wait(200);
say_stop("`4Yard.", &current_sprite);
wait(200);
say_stop("I know, but...nevermind.",1);
unfreeze(1)
}

if(&result==3)
{
say_stop("Who are you?",1);
wait(200);
say_stop("`4Me Henry. Me father and husbund. Me know lots of stuff.", &current_sprite);
wait(200);
say_stop("Like what?",1);
wait(200);
say_stop("`4Ultimate wisdom. I not tell hoomanz tho.", &current_sprite);
unfreeze(1)
}

if (&result==4)
{
say_stop("Can you teach the wisdom?",1);
wait(200);
say_stop("`4No. Bye now!", &current_sprite);
wait(200);
say_stop("Oh.",1);
unfreeze(1)
}

I also tried adding return; but that didn't help.