By Dara
First Chapter
label LI_gender
NARRATOR
Who is your love interest?
choice
"A Woman/Girl." {
NARRATOR
Are you sure you she's a woman/girl?
choice
<PREMIUM> “Yes!” {
gain LI_girl
goto female_LI_branch
} “No” {
goto LI_gender
}
} "A Man/Boy." {
NARRATOR
Are you sure he's a man/boy?
choice
<PREMIUM> “Yes!” {
gain LI_boy
goto male_LI_branch
} “No” {
goto LI_gender
}
}
label female_LI_branch
@pause for 0
#FEMALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#FEMALE LI STORY LINE GOES HERE
goto end_chapter
label male_LI_branch
@pause for 0
#MALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#MALE LI STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF EPISODE GOES HERE
All Other Chapters
if (LI_boy) {
goto male_story_branch
} else {
goto female_story_branch
}
label female_story_branch
#FEMALE LI STORY LINE GOES HERE
goto end_chapter
label male_story_branch
#MALE LI STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF CHAPTER GOES HERE