How do I make clothing choices remember in the next scene or chapter?

Hello everyone, I need help lol!! Does anyone know how to remember clothing choices in the script?

You label the choice and then add an if/elif/else option

So here we go:

choice (dressing_game1)

“Outfit1” {

@CHAR changes into Outfit1

} “Outfit2” {

@CHAR changes into Outfit2

} “Outfit3” {

@CHAR changes into Outfit3

}

Then in the beginning of the next episode:

if (dressing_game1 is “Outfit1”) {

@CHAR changes into Outfit1

} elif (dressing_game1 is “Outfit2”) {

@CHAR changes into Outfit2

} else {

@CHAR changes into Outfit3

}

4 Likes

This guide will help you and show you how to remember outfit choices.

3 Likes

Thank You :slight_smile:

Tank You so much! Very helpful! :slight_smile:

image

1 Like

Cheers to those who responded! Closing :v:t2: