Break out of Get input in Gamebook mode?

Terrence
In Gamebook, I created a get input which runs a function when the correct input is entered.

Until the correct input is entered, get input repeats the question.

But, I want the player to have an option to go back to page one and reread the story, if they don't know the correct answer.

I added a link back to page 1, but it doesn't work until the player enters the correct get input first, so it's useless.

Is there a way around this?

Thanks,

T.

HegemonKhan
<function name="function_1">
msg ("What is your answer?")
get input {
if (result = "your_correct_answer") {
goto page2
} else if (not result ="your_correct_answer") {
ask ("Try again: yes, or go back to page1 to read the story again: no") {
if (result = true) {
function_1
} else if (result = false) {
goto page1
}
}
}
}
</function>

This topic is now closed. Topics are closed after 60 days of inactivity.

Support

Forums