I think I’m kinda getting the hang of the whole “*create” and “*set to” mechanic but then how do you get things to change in game? Like pronouns, the MC’s name, and such?
I also wanted to add a few characters with choosable genders to one of my projects, I assume that works the same as when choosing the MC’s gender?
Sorry for being a bother but at least once you learn these things, you don’t need to worry about them again! At least I hope ._.
There’re actually a set of 4… pronouns in the rules.
So you’ll get
A
B
C
D
He
His
His
Him
She
Her
Hers
Her
They
Their
Theirs
Them
I’m not a native speaker, so I’m not sure what is this thing called (as in Indo, we’ve got “EYD” which stands for “Ejaan yang Disempurnakan,” or “Refined Spelling” Rule).
But I believe what I said is the convention in English pronouns.
ooh, ooh, ooh I can help with this! When I was trying to code various gender identities for the first time (allowing nonbinary folks to pick their pronouns from either a set list of common NB pronouns or input their own), I looked up a ton of charts.
The official names for pronouns are…
subject - like “he” (Eg: He is a stud)
object - like “him” (Eg: I love him)
possessive - like “her” (eg: that is her book)
possessive pronoun - like “hers” (Eg: that book is hers)
reflexive - like “themself” (Eg: They thought of themself)
So…it’s a good idea to program all of these options in, if you ever plan to have a character referred to in the third person
In creating those, they’d use the *create and *set string, just like for names. I, personally, use nonbinary as my basis, because there is a unique pronoun for each form, unlike for male/female.
So, for instance:
*choice
#her!
*set Gender "female"
*set Title "Miss"
*set their "her"
*set theirs "hers"
*set them "her"
*set they "she"
*set themself "herself"
*set lady "lady"
*goto next
I wouldn’t go so far as to program in the reflexive because you can just do this:
${them}self
For subject verb agreement, since “they” is a plural subject while he and she are singular, I’d just use a variable for singular/plural and multireplace.