Remembering outfit choices from previous chapters

Hi guys. I’m trying to figure out how to remember outfit choices from previous chapters. I set up a dressing game in one chapter, I need help with remembering that exact choice in the next chapter. This is what I wrote:
First Chapter:
label dress_to_impress

    YOU
(Now what should I wear that will make Ally fall head over heels for me?)

choice (DRESS TO IMPRESS)
“Cutie in a Bluish Green Dress” {
sound button_click
@YOU is dustoff_neutral_loop and pause for 2
@YOU changes into YOU_work3
@pause for 0.2
&YOU is rear and YOU faces left
@pause for 0.2
&YOU is rear and YOU faces right
@pause for 0.2
@YOU is dance_groove_happy_loop and pause for 5

} “Little Honey in the Crop Top” {
sound button_click
@YOU is dustoff_neutral_loop and pause for 2
@YOU changes into YOU_work4
@pause for 0.2
&YOU is rear and YOU faces left
@pause for 0.2
&YOU is rear and YOU faces right
@pause for 0.2
@YOU is dance_groove_happy_loop and pause for 5

} “The Sexy and Sophisticated Women” {
sound button_click
@YOU is dustoff_neutral_loop and pause for 2
@YOU changes into YOU_work5
@pause for 0.2
&YOU is rear and YOU faces left
@pause for 0.2
&YOU is rear and YOU faces right
@pause for 0.2
@YOU is dance_groove_happy_loop and pause for 5

}

@YOU is think_rubchin and pause for 3

    YOU
(Is this what I wanna wear?)

choice
“Yes, this outfit will definitely impress Ally.” {

} “No, let me try one of the other outfits.” {

goto dress_to_impress

}

Next Chapter:
if (DRESS TO IMPRESS is “Cutie in a Bluish Green Dress”) {
@YOU is dustoff_neutral_loop and pause for 2
@YOU changes into YOU_work3

} elif (DRESS TO IMPRESS is “Little Honey in the Crop Top”) {
@YOU is dustoff_neutral_loop and pause for 2
@YOU changes into YOU_work4

} else {
@YOU is dustoff_neutral_loop
@YOU changes into YOU_work5

}

When I am selecting the outfit I want from my first choice, it works perfectly, but when I go to the next chapter and come to the point where the character has to remember what outfit she chose, it shows her in a different outfit. Not in the one that I chose. For example:
I chose the first outfit “Cutie in the Bluish Green Dress”. In my next chapter I have a scene where she is wearing some pjs and sleeping. She wakes up and needs to change to the outfit I chose in the last chapter.
But instead it changes into the third outfit option instead of the first option. What am I doing wrong? Can anyone help me fix this?

Change this:
choice (DRESS TO IMPRESS)

To this:
choice (DRESS_TO_IMPRESS)

Also, the web previewer doesn’t remember choices from previous episodes. If you want to test this out to see if it works correctly, you will have to test your story in the app.

I just changed it. It worked!!!:grin: Thank you so much. Your always so helpful.

1 Like

Marked as solved and closed. Thanks Dara!