O.Bere
September 19, 2018, 2:36am
1
Basically, the main character has to pick a roommate and I dont know how to make the person that they choose show up throughout the story without having to write 2 different stories.
Apes
September 19, 2018, 2:39am
2
You can bring the choice up only in selected scenes where the roommate shows up
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…
1 Like