To be able to choose the MC and LI’s gender, you’d have to duplicate the entire story 4 times, that’s a lot of lines! Not to mention needing to change the pronouns and names! Here’s my concept to have the exact same thing, this time all in 1 story without duplicating!
————————
Let’s assume we’ve created 4 characters, 1 male MC with a script name of MMC, female MC is FMC, male LI is Josh and female LI is Amy.
NARRATOR
Select your gender.
choice “Male.” {
@MC is MMC
[HESHE]=“he”
[CAPHESHE]=“He”
[HISHER]=“his”
[CAPHISHER]=“His”
[HIMHER]=“him”
[CAPHIMHER]=“Him”
} “Female.” {
@MC is FMC
[HESHE]=“she”
[CAPHESHE]=“She”
[HISHER]=“her”
[CAPHISHER]=“Her”
[HIMHER]=“her”
[CAPHIMHER]=“Her”
}
——————
NARRATOR
Select your LI’s gender.
choice “Male.” {
@LI is JOSH
LINAME=“Josh”
[LIHESHE]=“he”
[LICAPHESHE]=“He”
[LIHISHER]=“his”
[LICAPHISHER]=“His”
[LIHIMHER]=“him”
[LICAPHIMHER]=“Him”
} “Female.” {
@LI is AMY
LINAME= [Amy]
[LIHESHE]=“she”
[LICAPHESHE]=“She”
[LIHISHER]=“her”
[LICAPHISHER]=“Her”
[LIHIMHER]=“her”
[LICAPHIMHER]=“Her”
}
——————
Then you would use MC as the script name for MC, assuming that the display name is from an input choice. MC’s gender is based on the option above and the LI’s script name would still be LI for this example. If you’d need to use the LI’s name, it would be like “Is that [LINAME] by the street?” and LINAME would be either “Amy” or “Josh”