Help! How to remove certain clothing to give to another character?

https://forums.episodeinteractive.com/t/how-to-remember-past-choices-if-elif-else/3774

You would need to remember the reader’s choice. This is a topic that explains it. I would recommend you using the Choice Name & Option Method because it’s easy.

For you case it could look something like this:

choice (CLOTHES)
“Outfit 1” {
@GIRL changes into Red_Outfit
}“Outfit 2”{
@GIRL changes into Blue_Outfit
}

Then later on in the jacket scene:

if (CLOTHES is “Outfit 1”) {
[then only add the clothes that match with this specific clothing choice which would be Red_Outfit_Jacket]
} and so on with the other choice…

1 Like