Remember choices from a previous episode

Hi! I’m new is this kind of writing (papers are my best friend, but I have to remember that I’m in 21 century :stuck_out_tongue: ).
I made a choose label in my 1st episode (3 options) for some clothes, and when I try to make if/elif in my 2nd episode… my character can’t remember it. :neutral_face:
I have same if/elif in 1st episode and it’s work. But in 2nd one, my character seems to get older and forgets what to wear, or I’m too stupid to can’t find what it’s wrong.

So, if someone can help a grumpy (usually I’m a nice person), I’ll appreciate that very much.
Thanks! :wink:

did you reset your story progress before testing other options?

You can also show your code :slight_smile:

This is initial options

choice
“Option 1”{
@MAL exits left
@MAL changes into Wedding_dress_1
gain chose_wedding1
}
“Option 2”{
@MAL exits left
@MAL changes into Wedding_dress_2
gain chose_wedding2
}
“Option 3”{
@MAL exits left
@MAL changes into Wedding_dress_3
gain chose_wedding3
}

and here is for remember

if (chose_wedding1){
@MAL changes into Wedding_dress_1
}elif (chose_wedding2){
@MAL changes into Wedding_dress_2
}elif (chose_wedding3){
@MAL changes into Wedding_dress_3
}


In the same episode works, in next one… don’t.

I made reset, refresh, close all tabs… nothing works. :sweat:

if (chose_wedding1){
@MAL changes into Wedding_dress_1
}elif (chose_wedding2){
@MAL changes into Wedding_dress_2
}else{
@MAL changes into Wedding_dress_3
}

I don’t know if you have a confirmation after the choice for the dressing game but here’s the example:

So…before my last option, I have to put else every time?

Yes :slight_smile:

Thanks! I will check tomorrow.
Hope it works.:hugs: