Choice error in my script

Hey, I’m having a problem with my script–Anyone know how to help me out here?

The script error says: Choices must follow dialog immediately, not a branch.

Here’s my script:

choice
“Pink Warm Gloss” {
@AMAYA changes mouthColor into Pink Warm Gloss
@pause for a beat
goto DECIDE

} “Neutral Medium Nude Gloss” {
@AMAYA changes mouthColor into Neutral Medium Nude Gloss
@pause for a beat
goto DECIDE

} “Purple Deep Matte” {
@AMAYA changes mouthColor into Purple Deep Matte
@pause for a beat
goto DECIDE

} “Plum Matte” {
@AMAYA changes mouthColor into Plum Matte
@pause for a beat
goto DECIDE

label DECIDE
&AMAYA is admire_happy then AMAYA is idle_happy_pose
AMAYA
Do I want to keep it like this?

choice
“Obviously!” {
continue

} “Nope” {
goto MENU
}

the error says it clearly you have to have dialogue before you make choice :wink: like:

NARR
What do you want to choice?
choice…

and there cant be empty line between the dialogue and the choice command

1 Like

Ok, I see what you mean. Thanks! :slight_smile:

1 Like

Now it says: Unexpected CHARACTER_FEATURE_CHANGE: (u’changes’, u’AMAYA’, u’mouthColor’, u’Plum Matter’)

} “Plum Matte”
@AMAYA changes mouthColor into Plum Matte
@pause for a beat
goto DECIDE

Do you know what this means?

not sure … do you have right the names of the colors? It must be the exact same name as it is in the character creation including small or big letters

Yeah, I have them right… Weird :S

Also I see you have label inside choice this is not possible.

1 Like

Oh…huh, okay I’ll try to fix that thanks

add closing bracket between the goto DECIDE and label DECIDE

1 Like

And in the choice “obviously” - the continue will make an errot it is not command nor narrator…if the story shoudl continue here you actually do not need to write anything between the brackets it will simply after this choise jump und the choice to next line

1 Like

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