Need help with branching(?) choices

Im writing a story for a project and it includes a lot of branching & I’m having trouble with this choice whereas the outfit you wear affects how this one character interacts with you, how do i fix this lol? bc the choices end up being repeated and doesnt go on to the next scene until all three of the choices have been gone through… :frowning:

@howdoyouspelldying,

I’m assuming you are using labels to go to the character interaction. If that is the case, the reason your choices may all be playing is because you lock a goto at the end of your labeled events. Basically at the end of each scenario you will need to put a goto label that will bring you to the rest of the story.

Example:
label choice1
Character does this.
goto story_continue
label choice2
Character does this.
goto story_continue
label choice3
Character does this.
goto story_continue
label story_continue
Now the story will continue.