I don’t know what type of choices it is. I can show you the example of what I’m wanting to do.
E.g.
NARR Where would you like to go first?
Choice
Go get a new phone.
Choice 2
Go get some new clothes.
Choice 3
Food.
Choice 4
Go Vue.
Choice 5
Go for a girl chat.
Choice 6
Finish in gold then within that you have the are you sure choice.
But I want it as if the pick choice 2 first they’ll have a choice to go to the other 4 choices. If they want to choose choice 3 they still have the other to choose from. If that makes sense.
Hi!
Try this. I just did it on here, without trying it on my laptop. Let me know if I missed anything, or if any error occurs.
label gofirst
NARR
Where would you like to go first?
choice
"Go get a new phone" {
goto gofirst
}"Go get some new clothes" {
goto gofirst
}"Food" {
goto gofirst
}"Go Vue" {
goto gofirst
}"Go for a girl chat" {
goto gofirst
} <PREMIUM> "Finish" {
goto sure
}
label sure
NARR
Are you sure?
choice
"Yes I'm sure" {
goto Continue
}"No, I'm not" {
goto gofirst
}
label Continue