Hello! I am new to this, so hopefully I posted in the correct place.
For my issue, it’s as the title says. I made it so that the player can choose the gender of the RO’s, and thus the name changes accordingly. But how do I put that into a stat_chart, as it currently doesn’t seem to work with a changeable name format/I can’t figure it out?
I have the RO’s saved as *create RO_1 “Unknown” and *create RO_2 “Unknown” for their name change thingy in the startup, tested and it works by the way.
showing their set name. This would also work if the player picks a name for them.
Or use multireplace with the gender variable:
@{RO_1_gender Alice|Bob}
or
@{RO_1_gender Alice|Bob|Sam}
First example would have RO_1 be a true/false variable, with ‘true’ showing the first option (Alice) and being set to true when the RO is set to female.
Second example is a numeral variable with 1=female 2=male 3=neutral/non-binary.
In a stat_chart it’d look like this:
*stat_chart
percent ro_1_stat ${RO_1}
or
*stat_chart
percent ro_1_stat @{RO_1 Alice|Bob|Sam}
Hope that helps (option one is the easiest and most commonly used one)