Help please with if/elif/else

In the episode where she chooses the clothes you have to pit gains, and in the episode where you need to remember the choice you need to use the if with gains!
Like:

label choose_outfit
NARRATOR
What do you want to wear?

choice “outfit 1” {
@CHARACTER changes into outfit 1

NARRATOR
Are you sure you want to wear this?

choice “Yes” {
gain outfit1
} “No” {
goto choose_outfit
}

} “outfit 2” {
@CHARACTER changes into outfit 2

NARRATOR
Are you sure you want to wear this?

choice “Yes” {
gain outfit2
} “No” {
goto choose_outfit
}

} “outfit 3” {
@CHARACTER changes into outfit 3

NARRATOR
Are you sure you want to wear this?

choice “Yes” {
gain outfit3
} “No” {
goto choose_outfit
}

}

Then in the other episode:

if (outfit1) {
@CHARACTER changes into outfit 1
}
if (outfit2) {
@CHARACTER changes into outfit 2
}
if (outfit3) {
@CHARACTER changes into outfit 3
}

2 Likes