Adding clothing items in the middle of an episode

You have to remember the choice.

Example:

Narrator
Which outfit do you want to wear?

choice (OUTFIT)
“Outfit1”{
@CHAR changes into Outfit1
} “Outfit2”{
@CHAR changes into Outfit2
} “Outfit3”{
@CHAR changes into Outfit3
}

Then when they want to pick up the bag, you have to create the same outfits but adding a bag to it.

if (OUTFIT is “Outfit1”){
@CHAR changes into Outfit1_bag
} elif (OUTFIT is “Outfit2”){
@CHAR changes into Outfit2_bag
} else {
@CHAR changes into Outfit3_bag
}

2 Likes