Anyone here who can teach me how to make MC choose between two love interest?
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.
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_chapterlabel suitor2_branch
@pause for 0
#storyline here for suitor 2
goto end_chapterlabel end_chapter
#end of the chapter here
Is this what you were looking for?
Just wanna add this website here too. It might have what you’re looking for.
Thanks so much. I’ll give it a try.
Hi. Sorry for bothering. I’ve tried it but it wouldn’t work. Do you have a sample script?
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.