How to add LGBQT+ option in a Story?

Hi everyone, hope you all are safe and sound. :blush: :blush:

Could you guys tell me how can i add different love interest. I mean i used dara’s temeplate and that’s helping but when i pick female then male character shows up BUT when i tap male then again male character pops. :worried:And i want to make my story for every sex. Hope i am making some sense :blush:

1 Like

Just make 2 different characters, I think :woman_shrugging:t3:
Maybe knows @superpup it, she’s good at that sort things :hugs:

2 Likes

You need to have two different labels. Then on one you have the male MC route, and the other will have the female MC route

1 Like

Thanks but could you give me an example? Please :blush:

Yeah sure!

Label choose_gender

NARRATOR
What gender would you like to play as?

Choice

“Guy” {

NARRATOR
Are you sure you want to be a guy?

Choice
“Yes” {
Goto guy_route
} “No”{
goto choose_gender
}
} “Girl” {

NARRATOR
Are you sure you want to be a girl?

Choice
“Yes” {
Goto girl_route
} “No” {
Goto choose_gender
}
}

Label guy_route

The story with the guy as the MC

Label girl_route

The story with the girl as the MC

1 Like

You just have to use gains. Use @black_jack’s thing for choosing the gender of the MC.

label LI_gender

NARRATOR
Are you attracted to guys or girls?

choice
“Guys” {

NARRATOR
Are you sure you’re attracted to GUYS?

choice
“Yes” {
gain guys
} “Oops, I made a mistake” {
goto LI_gender
}} “Girls” {

NARRATOR
Are you sure you’re attracted to GIRLS?

choice
“Yes” {
gain girls
} “Oops, I made a mistake” {
goto LI_gender
}}

Now, later in the script, when the LI comes in, you write:

if (guys) {

#if it’s the guy LI

} else {

#if it’s the female LI

}

When you’re testing it in the previewer, make sure to remove all the gains each time you preview that part, otherwise it won’t work properly.

2 Likes

If you’re having issues with my template, post a screenshot of your script as it could be something wrong with your coding

Oh right!! Yeah you also need gains. But you do need the labels as well.

1 Like

thankyou :blush: :blush:

1 Like

thankyou :smiling_face_with_three_hearts:

1 Like