Letting Reader Choose Gender?

I know how to create choices, use if, elif, and else, and labels, but my issue is my two gender script templates keep merging.

Can someone help??

1 Like

Check out:

2 Likes

what I’d do is at the beginning when you ask them what gender they prefer create two gains and three labels

label guy_story
label girl_story
label story_end

basically, this is how the beginning question would appear as

NARRATOR
Would you like to read the story as a female or male?
choice
“Female”{
gain female
add any narration or whatever you want in here
}
“Male”{
gain male
add any narration or whatever you want in here
}

if (female){
goto girl_story
}
else {
goto guy_story
}

make sure you create labels for your destinations

the reason why you’d create the story_end label—Is that whenever the episode ends as a female or whoever you have first, it’ll skip the opposite genders part then you’ll be able to move onto the next episode

1 Like

Here’s an example for it:

label date_male_story

@pause for 0
#MALE LOVE INTEREST STORY LINE GOES HERE#
goto end_story

label date_female_story

@pause for 0
#FEMALE LOVE INTEREST STORY LINE GOES HERE#
goto end_story

label end_story
#END OF STORY GOES HERE#

Just add a goto end_story at the end of the male and female storyline and it should lead to label end_story which goes at the bottom of your story where you write to be continued and ending messages : )

1 Like

Thanks so much!!! :slight_smile: I didn’t have a 3rd label and that was the problem.