Choices Carrying Over Between Episodes

I’m trying to wrap up my first episode and start my second, but in order to decide how I want to do it, I need to know if choices that a player made in episode one will carry over and be remembered in episode two. Is there something I need to do to make that happen, or do I just have to start over with the choices and essentially ask the player which choices they left off on (giving them the opportunity to say that they chose a path different from the one they actually selected, and thereby making the continuing story and characters disjointed and weird)? Thanks guys.

If you want to remember a choice do this
choice
“option 1“{
details of choice
gain [name of the gain]
}
You can give the gain whichever name you‘d like.
It‘s just like with labels
To use that answer later on do this
If ([name of the gain]) {
Details of what you want to happen
}

That’s basically it.

1 Like

This is so helpful!!! Thanks!

Here’s a guide to help you: HOW TO: Remember Past Choices (if/elif/else)