My choice isn't being remembered!

I have a scene where my character changes into pyjamas (by way of reader choice). Here is the script:
label pjs_dress_up
YOU (think_rubchin)
(What should I wear to bed?)
choice
“Pyjama Look 1” {
@YOU is dustoff_neutral_loop
@YOU changes into YOU_pjs_dress_up_1_1
@YOU is idle_handsonhips_neutral_loop
@zoom on 496 0 to 319% in 0
@zoom on 496 360 to 319% in 5
@YOU is idle_handsonhips_neutral_loop
} “Pyjama Look 2” {
@YOU is dustoff_neutral_loop
@YOU changes into YOU_pjs_dress_up_1_2
@YOU is idle_handsonhips_neutral_loop
@zoom on 496 0 to 319% in 0
@zoom on 496 360 to 319% in 5
@YOU is idle_handsonhips_neutral_loop
} “Pyjama Look 3” {
@YOU is dustoff_neutral_loop
@YOU changes into YOU_pjs_dress_up_1_3
@YOU is idle_handsonhips_neutral_loop
@zoom on 496 0 to 319% in 0
@zoom on 496 360 to 319% in 5
@YOU is idle_handsonhips_neutral_loop
}
@zoom reset
YOU (think_rubchin)
(Is this what I want to wear to bed?)
choice
“Yes” {
YOU (cheer_happy_loop)
(Perfect!)
continue
} “No way!” {
goto pjs_dress_up
}

But then as I go to ‘remember the choice’ again (as there is a flashback scene/dream sequence which then cuts back to the character in their pyjamas AND the character does have an outfit change during that) - here is that script:
if (pjs_dress_up is “Pyjama Look 1”) {
@YOU changes into YOU_pjs_dress_up_1_1
} elif (pjs_dress_up is “Pyjama Look 2”) {
@YOU changes into YOU_pjs_dress_up_1_2
} elif (pjs_dress_up is “Pyjama Look 3”) {
@YOU changes into YOU_pjs_dress_up_1_3
}

HOWEVER, MY CHARACTER ISN’T WEARING THE CHOICE!
Can someone please help?!

That’s the name of the label you are using so that’s why it isn’t working. If you want it to remember the choice then you’ll have to name the choice like this

This should either fix it, Let me know if it works :wink:

Ooooh. Thank you. I couldn’t pin point what was wrong!

Solved and closed. :smiley:

1 Like