Choices that direct to labels!

I’ve seen some people have problems with choices that make you go to labels, like if you press the choice it will take you to a label, then it will go onto the other label as well!

here’s how to not deal with this, when you write the dialog for the label that the choice will direct the reader to, make sure to put a goto at the end of the label so it wont overlap the other label. Don’t forget that! here’s an example:

NARRATOR

Random thing here.
choice
“Choice 1” {
goto choice_1
}
“Choice 2” {
goto choice_2
}

label choice_1

NARRATOR
Some words.
Maybe some more!

goto choice_merge

label choice_2

NARRATOR

Some more words.

goto choices_merge

label choices_merge

NARRATOR
I’m bored, I need food.

Hope that helps! Good luck on continuing your writing!

2 Likes

Moved to Directing Helps and Tips since this is about coding. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to PM me if there are any questions. :wink:

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