Hello everyone, I need help lol!! Does anyone know how to remember clothing choices in the script?
How do I make clothing choices remember in the next scene or chapter?
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
}