@Dara.Amarie , @Apes , @RudeInception , @JemU776 and @Jade.epi
Can one of you help me
I think I’ve managed it (although until the error goes I can’t check
)
I’ve done this for them to choose gender love interests (Which seems to be okay)
But when I go on to do the customisation I have an error
I have done the customisations for the love interest characters, but when it comes to the label end_chapter after the 1st lot of customisations it’s saying unexpected garbage
What I’ve got is too long to write so I’ll shorten it, this is it…
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
“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
“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
“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#
This paragraph is working, no issues
(Their love interest is either x2 girls, x2 boys or 1 of each depending which option they chose)
Then I’ve done the 1st lot of customisation choices
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 <<this is the error line
#END OF STORY GOES HERE
Then the same jargon for 2nd love interest customisation (obv diff characters)