How to change the choice and go back to the last set of choices

So I’m trying to let the player choose the main character’s name from a set of names and give them the option to go back and change their mind. This is what I have at the moment:
NARR
Choose a name.
choice (name_choice)
“Alameda”{
}“Al”{
}“Ali”{
}“Lee”{
}“Lea”{
}“Mimi”{
}
NARR
[NAME], is that your name?
choice (ALI)
“Yes!”{
}“No, I want to change it.”{
}

What do I code from here to go back to the ‘Choose a name’ choices if they select “No, I want to change it”?

I’m writing my first story for Episode, so I’m still learning!

Try that.

It didn’t work :frowning_face: it throws back an error: ‘The label “name_choice” does not exist’. How do I make name_choice a label?

Did you put the label name_choice in?

Oof. I realized I was wrong here. Um,

Maybe, try this? If not, @JemU776?

:heart:

So add a:

Also:

Basically the display name goes in the ( ) next to the word choice.

By the way, make sure the character’s display name is NAME

Here’s how gotos & labels work:

2 Likes

Figured it out using the links - thanks!
I wound up needing to put the command label name_choice before the choice menu in order for it to work:
INT. BLACK - NIGHT
label name_choice
NARR
Choose a name.
choice (name_choice)
“Alameda”{
}“Al”{
}“Ali”{
}“Lee”{
}“Lea”{
}“Mimi”{
}
NARR
[NAME], is that your name?
choice
“Yes! Let’s go!”{
}“No, I want to go back and chose a different name.”{
goto name_choice
}

1 Like

Closed: Marked as solved by thread op :v: