How to remember outfit choices?

Hello! I’m stuck in my story! I would like to know how to remember an outfit choice from the last episode. For example, my MC is wearing a dress at the end of episode one. And in episode two I still want the MC to have the same dress that the MC did on episode one. How do I do that?

1 Like

If you don’t change outfit, it will remain the last the character wore
It’s just the previewer that sometimes doesn’t remember these things

2 Likes

label outfit_choices
NARR
What should I wear?
choice
“Outfit 1”{
goto outfit_1_choice
}“Outfit 2”{
goto outfit_2_choice
}“Outfit 3”{
goto outfit_2_choice
}
label outfit_1_choice
@CHARACTER changes into (outfit 1 name)
NARR
Is this my final choice?
choice
“Yes” {
gain outfit_1
goto continue_episode
}“No”{
goto outfit_choices
}
label outfit_2_choice
@CHARACTER changes into (outfit 2 name)
NARR
Is this my final choice?
choice
“Yes” {
gain outfit_2
goto continue_episode
}“No”{
goto outfit_choices
}
label outfit_3_choice
@CHARACTER changes into (outfit 3 name)
NARR
Is this my final choice?
choice
“Yes” {
gain outfit_3
goto continue_episode
}“No”{
goto outfit_choices
}
label continue_episode
#rest of your episode goes here

At the beginning of the next chapter:
If (outfit_1) {
@CHARACTER changes into (Outfit 1 name)
}elif (outfit_2) {
@CHARACTER changes into (Outfit 2 name)
}else{
@CHARACTER changes into (Outfit 3 name)
}

I’m not sure if this is what you meant lol.

3 Likes

EPISODE 1
NARR
Which dress do you want to wear?
choice
“DRESS 1”{
@CHAR changes into OUTFIT_DRESS1
gain DRESS1
}
“DRESS 2”{
@CHAR changes into OUTFIT_DRESS2
gain DRESS2
}

EPISODE 2
if (DRESS1){
@CHAR changes into OUTFIT_DRESS1

}elif (DRESS2){
@CHAR changes into OUTFIT_DRESS2

}

3 Likes

It is what I meant! tysm!

3 Likes

No problem :blush: :heart:

2 Likes

Tysm! :smiling_face_with_three_hearts:

1 Like

First of all. Tysm for these :sparkling_heart:
Second of all. You’re such a genius, ilysm :pleading_face:

@Dara.Amarie Can you make the tappable outfit game with flags?