Love interest choices

Anyone here who can teach me how to make MC choose between two love interest?

2 Likes

What do you mean?

Because she has two suitors and the MC will have to pick one she wants to be with at the end of the story.

1 Like

Ah, right. I thought you meant the genders of the LI. You would use the normal choice coding, and after, the if/elif/else coding.

Something along the lines of:

label finalchoice
NARRATOR
Who will you pick?

choice
“Suitor 1.” {
NARRATOR
Are you sure?

choice
“Yes.” {
gain suitor1
goto suitor1_branch
} "No. {
goto finalchoice
}}
“Suitor 2.” {
NARRATOR
Are you sure?

choice
“Yes.” {
gain suitor2
goto suitor2_branch
} “No.” {
goto finalchoice
}}

label suitor1_branch
@pause for 0
#storyline here for suitor 1
goto end_chapter

label suitor2_branch
@pause for 0
#storyline here for suitor 2
goto end_chapter

label end_chapter
#end of the chapter here

Is this what you were looking for?

1 Like


Just wanna add this website here too. It might have what you’re looking for. :slightly_smiling_face:

2 Likes

Thanks so much. I’ll give it a try.

1 Like

Hi. Sorry for bothering. I’ve tried it but it wouldn’t work. Do you have a sample script?

1 Like

What isn’t working? Is there an error? Or is it not sending the reader to the right place after they make the choice?

Could you please send a pic of your script so I can help you further?

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