The Dink Network

Reply to Re: Does this work?

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:
 
 
April 30th 2006, 09:58 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
You mean something like this?

choice_start()
"Say hello"
(&story == 1) "Say blabla"
choice_end()
wait(250);

if (&result == 1)
{
// the say hello part
}

if (&result == 2)
{
// the say blabla part
// you can place the yes/no choice here
choice_start()
"Yes"
"No"
choice_end()
wait(250);

if (&result == 1)
{
// the yes part
}
if (&result == 2)
{
// the no part
}
}