Remembering outfit

Could you please explain me one thing. I’ve got 2 episodes, in the first one I’ve let a player choose an outfit. Now I need it to appear in the second episode. It must be something about remembering choices?

Yes, but keep in mind that on the app when a character wears an outfit it WILL pass onto the next one, unless you change it
But on the PC previewer, it won’t show that way.

If you want, I could code the nested/remembering outfit choice for you, I’ll need your characters name
and the outfit names.

1 Like

I’d really appreciate that♥️
Name:LILY
•BORING_1
•BORING_2
•BORING_3

Here is the dressing game code!

Dressing Game

label dress_lily
LILY (think)
(What should I wear?)
choice (dressing_game)
“Outfit Choice 1”{
@LILY is dustoff_loop
@LILY changes into BORING_1
@LILY is shiftweight
@pause for 1
}
“Outfit Choice 1”{
@LILY is dustoff_loop
@LILY changes into BORING_2
@LILY is shiftweight
@pause for 1
}
“Outfit Choice 1”{
@LILY is dustoff_loop
@LILY changes into BORING_3
@LILY is shiftweight
@pause for 1
}

LILY
(Is this the outfit?)
"< PREMIUM>“Yes, I love it!”{
LILY (blush)
(Totally adorable!)
}
“No, it’s not!”{
goto dress_lily
}

And this is the code to remember!

Remebering Outfit

if (dressing_game is “Outfit Choice 1”){
@LILY is dustoff_loop
@LILY changes into BORING_1
@LILY is shiftweight
@pause for 1
}
elif (dressing_game is “Outfit Choice 1”){
@LILY is dustoff_loop
@LILY changes into BORING_2
@LILY is shiftweight
@pause for 1
}
elif (dressing_game is “Outfit Choice 3”){
@LILY is dustoff_loop
@LILY changes into BORING_3
@LILY is shiftweight
@pause for 1
}

You could use else after the first elif, but I decided to add another elif incase you’d like to add more outfits :blush:

Thank you so much for your help♥️