Using choices which will matter?

Hi, I want to let the reader choose how many love interests there are…
How do I code it and have it remember it?
Thank You

1 Like

@apes sorry to bother you again but could you help

You could do something like this:

   NARRATOR

How many love interests would you like there to be?
choice
“Two”{

gain TwoLoveInterests
}
“Three”{

gain ThreeLoveInterests
}
“Four”{

gain FourLoveInterests
}

Then when writing the episode you would put an if command for each one, so the story plays depending on that choice

if (TwoLoveInterests){

The two love interests introduce themselves or something
}elif (ThreeLoveInterests){

The three love interests introduce themselves or something
}elif (FourLoveInterests){

The four love interests introduce themselves or something
}

I hope that made sense :joy::joy:

1 Like

Thank You @Problematic_Patrick

1 Like

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