Do I have to make two seperate chapters if I give a gender LI choice?

hey guys! So in my story, i"m giving the reader the option to have a male or female LI, but I was wondering how to do that. Any tips? Ik to use @Dara.Amarie’s template.

Nope branching only

1 Like

you would have to make 2 different characters, then set labels. So it would be:

NARR
Do you want to date girls or guys?

choice
“Girls”{
gain girls
goto label date_girls
}“Guys”{
goto label date_guys
}

label date_girls
(insert script with the female LI)

label date_guys
(insert script withe male LI)

1 Like

thanks! but I have to do that for every chapter?

yes, then you would use gains in the beginning of the chapters as well,

so it would be

if (girls){
goto label date_girls

}else{
goto label date_guys

1 Like

Thank you so much!

1 Like

Hey! So quick question, do i put the (brackets) when I’m inserting the script?

you put it in the choice yeah, then when you use labels you won’t have to. So say if you choose to date girls, you put

if (girls){
goto label date_girls
}
label date_girls
(insert script for dating girls)

then once the script ends put
goto label end_story

then at the end of the story put

label end_story

So you only use brackets for the if/else and gains

1 Like

tysm!

1 Like

always :revolving_hearts:

1 Like