By Dara
First Chapter
label choose_gender
NARRATOR
Who do you want to play as?
choice
"Female" {
NARRATOR
Are you sure you want to play as a female?
choice
<PREMIUM> “Yes!” {
gain MC_female
goto female_story_branch
} “No” {
goto choose_gender
}
} "Male" {
NARRATOR
Are you sure you want to play as a male?
choice
<PREMIUM> “Yes!” {
gain MC_male
goto male_story_branch
} “No” {
goto choose_gender
}
}
label female_story_branch
@pause for 0
#FEMALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#FEMALE STORY LINE GOES HERE
goto end_chapter
label male_story_branch
@pause for 0
#MALE CUSTOMIZATION TEMPLATE GOES HERE (OPTIONAL)
#MALE STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF EPISODE GOES HERE
All Other Chapters
if (MC_male) {
goto male_story_branch
} else {
goto female_story_branch
}
label female_story_branch
#FEMALE STORY LINE GOES HERE
goto end_chapter
label male_story_branch
#MALE STORY LINE GOES HERE
goto end_chapter
label end_chapter
#END OF CHAPTER GOES HERE