Advanced branching?

Hey so I was wondering if anyone would be able to help me with complex branching. Like if the reader makes a choice in one episode, how can that still impact the storyline in the next episode?

Here is an example.

choice (important_choice)
“Kiss Him.” {
}
“Don’t Kiss Him.” {
}

later in the episode or episode two.

if (important_choice is “Kiss Him.”) {
#scene here
}
else {
#scene for don’t kiss him here.
}

Or you can use gains.

choice
“Kiss him” {
gain kiss_him
}
“Don’t kiss him.” {
gain no_kiss
}

later in the episode or episode two.

if (kiss_him) {
#scene for kiss him here
}
else {
}

Some articles to check out.

3 Likes

Thank you so much!!! :laughing::smiling_face_with_three_hearts:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.