Okay cool, so like Daisy said, if the character doesn’t change outfits between episodes, the outfit choice should stick. But just in case you have to name your outfit choice you add in the following command:
choice (Outift) It can be whatever name you want
“Grey Suit” {
@YOUNG DERIC exits left
@YOUNG DERIC changes into Formal wear 1 M
@YOUNG DERIC enters from left to screen center
…
And then in the beginning of the next episode or if your character changes into another outfit and you want them to change back to the readers choice:
if (Outfit is “Grey Suit”) {
@DERIC changes into Formal wear 1 M
} elif (Outfit is “White Shirt and Vest”) {
@DERIC changes into Formal outfit 2 M
} else {
@DERIC changes into Formal wear 3 M
}