ok so to be more in depth
originally when you have the first outfit choice, it has a label. you need to use that label for the if/elif/else code.
this is what it would look like
CHARACTER (animation)
What do I want to wear?
choice (LABEL) <<<< you need whatever is in here
“Outfit 1” {
@CHARACTER changes into Outfit1
} “Outfit 2” {
@CHARACTER changes into Outfit2
} “Outfit 3” {
@CHARACTER changes into Outfit3
}
make duplicates of all the outfits you made for the original choice except add the jacket this time. then you do
if (LABEL is “Outfit 1”) {
@CHARACTER changes into Outfit1
} elif (LABEL is “Outfit 2”) {
@CHARACTER changes into Outfit2
} else {
@CHARACTER changes into Outfit3
}
except make the outfit choices the duplicate versions.
hope that makes sense!