I'd suggest, that you use the numeric gender-values with their constants. Makes the code more readable:
From includes/appearanceDefs.as
// gender
public static const GENDER_NONE:int = 0;
public static const GENDER_MALE:int = 1;
public static const GENDER_FEMALE:int = 2;
public static const GENDER_HERM:int = 3;
Oh and
@Kitteh6660 is still alive. I guess, he's busy with working on the next release of CoC Revamp.
Easier to read is nice but I can't find the data that I need to change.
I really need to learn how to code. I can tell this is something I can fix by changing one tiny thing but it's a needle in a haystack.
I'll keep looking but if anyone here know how to code could you tell me how to change this shit?
If you follow the "How to mod" guide you can make an edit of CoC that's identical to mine. You just need to put "Dickgirl" in the search and you'll find it. I only changed one variable and it's in the code I just posted.
I'd post my modified code but it seems a little dumb to post code that's barely changed at all and may be compiled weird. (I have no idea what I'm fucking doing)
If I can change it so femboys have male pronouns I'll release the final project. So let's brainstorm for a bit here.
------
Here we have our champion who we'll call... Champ. Yeah why the fuck not?
Champ started his journey as a male but decided he wanted to be prettier. So Champ fucks Akbal until his corruption is high enough and
then he explores the Plains looking for the Bizarre Bazaar.
Champ pays Joey 500 gems for the androgyny perk. However that's just a perk, it has no immediate effect on his gender or appearance.
Champ goes to the Mountains in search of the Salon. He gets there and keeps getting mud facials until he's finally a beautiful girly boy.
So let's put it like this. Somewhere along the line Champ's gender kinda got changed, but kinda didn't. See, Champ doesn't have a vagina so he's not a girl.
But somewhere the game decided to use female pronouns. It's especially obvious that he's male since his save file has a big 'ol M on it. So the game still counts him as male.
This means that when his femininity reached a certain point the game activated some sort of flag telling the rest of the game to use female pronouns.
The question is: Where is this flag? I've searched Appearance.as, CharCreation.as, Creature.as, and Character.as and can't find it.
Any ideas?