Template/Script help needed for love interest and customisation!

Hi (before anyone asks I have looked at Dara.Amarie lol)
I need some help, I struggle with so much wording (I have visual impairment) so altering texts is a night mare - especially when just one template is loads :stuck_out_tongue:

Could someone help me with altering the if/elif or else stuff please? (I will give you credit!!)

I have managed to do the main character template, but now I want to give people the option to choose the love interest (boy, girl or both)
then I will go on to let them customise 2 love interest (x2 boys, x2 girls or x1 boy and x1 girl)
Then I want to see the love interests stand next to each other to take a screen shot
Can someone help me please? If so, I will give you the names and their looks (I want gold button on their default look I gave) :slight_smile:

1 Like

I can try to do it - LL or INK

here you have the first choice where the reader can choice if he is into
girs boys or both

you will gain
GIRLS
BOYS
GIRLS_AND_BOYS

which you can use in future any time you will need it.

label choice_LL
NARR
Are you interested in
choice
“Girls” {
NARR
Are you sure you want your love interest to be girls?
choice “YES” {
gain GIRLS
} “NO” {
goto choice_LL
}
} “Boys” {
NARR
Are you sure you want your love interest to be boys?
choice “YES” {
gain BOYS
} “NO” {
goto choice_LL
}
} “Girls and boys” {
NARR
Are you sure you want your love interest to be both girls and boys?
choice “YES” {
gain GIRLS_AND_BOYS
} “NO” {
goto choice_LL
}
}

2 Likes

I think for your interest that you should do an girl and girl realanship because now a days that’s the most famous realanship . And this intro is good because it has an choice but we don’t wanna give them an choice give them an surprise.

and here is the basic if elif tamplate for the customization

I havent coppied the customization itself but marked the places where to put them

NARR
Great now lets customize your love intterest!
if (BOYS) {
goto BOY1
} else {
goto GIRL1
}
#################################################
label GIRL1
NARR
Here add the customization for the first girl - she will be also the female love interest for the bisexual option!
if (GIRLS) {
goto GIRL2
} else {
goto BOY2
}
#################################################
label GIRL2
NARR
Here add the customization for the second girl
goto end_custom_LL
#################################################
label BOY1
NARR
Here add the customization for the first boy
goto BOY2
#################################################
label BOY2
NARR
Here add the customization for the second boy - he will be also the male love interest for the bisexual option!
#################################################
label end_custom_LL
NARR
Here you go on with the story

@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 :stuck_out_tongue: )
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)

might have figured it out now, should know in the next half hour lol

Eek I’m so sorry haha I’ve been busy with making gifts :see_no_evil: Do you still need help? :yay:

Nope not got it (face palms, slightly bangs head on laptop)
They all seem to be jumbled up I just checked the boys customisation (the 1st option lol) the 1st one is good, but when it gets to the 2nd one it went to one of the girls, and the boy stayed on the screen :see_no_evil:
If I message you can you maybe advice where I’ve gone wrong please?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.