Help needed fast!

Hi there, I wanted to ask how a reader will continue on the same decisions they made in episode 1. If you don’t understand me here is what I mean

Suppose the reader chose to be male in episode 1 how will they continue to be a male in the rest of the episodes.

Thank you in advance

You need to use if/else. Assuming you placed flags/gains with the gender choice?
if(male_mc){
goto male_script
}else{
goto female_script
}

label male_script
script for Male MC

label female_script
script for female MC

You’ll need to put this at the beginning of each of your episodes :blush:

Sorry I’m new to writing so I have no idea what gains/flags are. If it’s no trouble could you explain what they are?

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