How to put labels inside of choices? Or alternative methods

Have you tried making a label for each page such as label page1.
So it would look something like this:

label page2
Background
Blah blah (whatever happens or shows here)

choice
“Turn page” {
goto page3
} “go back” {
goto page1
}

label page3
Blah blah

choice
“Turn the page” {
goto page4
} “go back” {
goto page2
}

And then whenever they’re on the last page; (example of the book having a total of 8 pages)

label page8
choice
“Close book” {
goto bookfinished
} “go back” {
goto page7
}

label bookfinished
However the scene/episode continues when they’re done with the book.

1 Like