Go back to previous choice

Hi I need help with my script! So in my story I need my character to choose between two choices and if she chooses the wrong choice she has to re-choose the choice. I don’t know what coding I have to put for that, could anyone please help?

1 Like

It could be possible with flags.
Something like this:

label choiceanswer

NARRATOR
Wich one do do you choose?

choice “valid answer” {

NARRATOR
Text goes here.

} “wrong answer” {

NARRATOR
Wrong.

goto choiceanswer

}

NARRATOR
Script after the choice is done.

.
.
.
I hope this helps! You need to change the “valid answer” and “wrong answer” of course to yoir answers.

1 Like
label make_choice

choice 
“choice one” { 

NARR
You picked the right choice!

} “choice two (wrong)” {

NARR
You picked the wrong choice! Pick again!

goto make_choice

}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.