Remembering Who You Saw

Okay try and keep with me because I’m bad with all the knew lingo.
So the sitch is I have written out three choices. Which ever the reader chooses will take them to a different place with a different guy. In later chapters I’d like it to hint back to that. How would I code that. I need a well explained even shown would be better example.

So right now I have done the example below but obviously with two others along with it. I also of course have those parts written out. Now how do I code everything to come together in later chapters.
Example:
goto Bash_Kitchen
label Bash_Kitchen

Thank you for taking the time to help a noob like me out. :blob_hearts:

1 Like

@Dara.Amarie has athread for this called remembering choices. But it would go like this:
if (restaurant_w_jaxson) {
[content with jaxson here]
} elif (store_w_mat) {
[content with mat here]
} else {
[content with mason here]
}

Later chapters

if (restaurant_w_jaxson) {
[content here]
}

And it just jappens with every boy. Every label in you’re story will be remembered, no matter what chapter #!

this is the best way that i’ve seen it explained, as i used this version and it’s actually fairly simple once you get the hang of it! :star_struck:

Thank you for linking, i forgot i even made that :joy:

1 Like

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