Hi, Ive read stories and heard authors talk about having multiple branches in their story? What is the best way to do branching / have more than one branch ( outcome ) in your story?
Here are some threads that can help you with that
Please visit my website for more templates and guides!
https://www.dara-amarie.com/
FIRST AND FOREMOST, to remember choices, you will need to use the if/elif/else code, which looks like this:
if (label1) {
} elif (label2) {
} else {
}
if is always first, elif is always in the middle, and else should always be the last one by itself
if you have 2 options, you only need to use if and else
if (label) {
} else {
}
if you have 3 options, use if then elif then else
if (label1) {
} elif (lab…
Author: Tara Star (TaraStar on the Forums, tarastarofficial on Instagram)
Hi everyone! Me again today I’m going to go through some of the more advanced features of the Script Writer, and hopefully explain them clearly. Before reading on, I advise that you familiarise yourself with the advanced directing guide before hand, and you should at least have a knowledge of basic choices.
Labels and gotos
Before I talk about if/else systems, you need to be familiar with how to use labels and g…
3 Likes
system
Closed
June 20, 2019, 3:43am
3
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.