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
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)
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
Thank you so much!
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
tysm!
always