Coding bug 🦠 Helppp!

labels can’t go inside of choices and they can’t go inside of if/elif/else. You need to use a goto inside of a choice that leads to a label outside of the choice and write up the scene. At the end of the scene, you can write a goto that leads to a label sharing the same name, where the story merges. Can read more here: HOW TO: Labels and Gotos 🖤

Example:

NARR
Would you like to go to the park?

choice
“Yes”{
goto PARK
}

label PARK
#script here for going to the park
goto merge_story

label merge_story
#back to main story-line.

1 Like