Remembering an outfit in next episode point system?

Choice 1 CHAROUTFIT1 (CHAR = character name, OUTFIT represents that an outfit is being remembered, and 1 represents the episode number or the outfit number you’re remembering if you want to have multiple an episode) = 1, choice 2 CHAROUTFIT1 = 2, and so on.

When you want to remember that, just do…

if (CHAROUTFIT1 =1){
@char changes into outfit 1
} elif (…)

Full example:

NARRATOR
What outfit would you like to wear?
choice
"Outfit1"{
@CHAROUTFIT1 =1
@CHAR changes into outfit1
} "Outfit2"{
@CHAROUTFIT1 =2
@CHAR changes into outfit2
} "Outfit 3"{
@CHAR changes into outfit3
@CHARACTER1 =3
}

Later…

if (CHAROUTFIT1 =1){
@CHAR changes into outfit1
} elif (CHAROUTFIT1 =2){
@CHAR changes into outfit2
} elif (CHAROUTFIT1 =3){
@CHAR changes into outfit3
}
1 Like