I need help making choices that affect the outcome of my story
have you tried joseph evans episode tutorials?
I’m not sure if you’re asking for help with creating choices or remembering choices? You can use labels to remember the choices the reader makes and use them later in the story.
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…