By Dara
First Chapter
label choose_date
NARRATOR
What is your dating preference?
choice
"I like boys." {
NARRATOR
You chose to date |bold,color:blue|boys|reset,no-space|. Is this correct?
choice
<PREMIUM> "Yes!" {
gain date_boys
goto date_boys_story
} "No" {
goto choose_date
}} "I like girls." {
NARRATOR
You chose to date |bold,color:pink|girls|reset,no-space|. Is this correct?
choice
<PREMIUM> "Yes!" {
gain date_girls
goto date_girls_story
} "No" {
goto choose_date
}} "I don’t have a preference." {
NARRATOR
You don’t have a dating preference. Is this correct?
choice
<PREMIUM> "Yes!" {
gain date_all
goto date_all
} "No" {
goto choose_date
}}
label date_boys_story
@pause for 0
#MALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#DATE BOYS STORY LINE GOES HERE
goto end_chapter
label date_girls_story
@pause for 0
#FEMALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#DATE GIRLS STORY LINE GOES HERE
goto end_chapter
label date_all
@pause for 0
#CUSTOMIZATION GOES HERE (OPTIONAL)
#STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF STORY GOES HERE#
All Other Chapters
if (date_all) {
goto date_all
} elif (date_girls) {
goto date_girls_story
} else {
goto date_boys_story
}
label date_boys_story
#DATE BOYS STORY LINE GOES HERE
goto end_chapter
label date_girls_story
#DATE GIRLS STORY LINE GOES HERE
goto end_chapter
label date_all
#STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF STORY GOES HERE