Reply to Re: Does this work?
If you don't have an account, just leave the password field blank.
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
}
}
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
}
}