You can now bring your readers directly to the result of a choice with a label, without having to write a separate branch for this option! This function works within regular and timed choices.
Here’s how to use it: At the spot in which you’d like to take your reader directly to the branched choices, place “goto [name of label]” . Inside of the branch you’d like them to end up in, write “label [name of label]”.
An example would be:
INT. BLACK - NIGHT
NARRATOR
You have chosen to be a villain.
ROSE
Hi, are you a hero or a villain?
goto villainbranch
choice “I’m a hero!” {
YOU
I’m a hero!
} “I’m a villian” {
label villianbranch
YOU
I’m a villain!
}
What could this be used for: This could be used in conjunction with flags or points to easily keep readers in branches based on their previous choices, while giving others the opportunity to choose.