- Mar 12, 2022
- 165
- 368
So an update...So i think I might have found a way to make the Main story MALE NPCs female.
Like Ansel Motte or Jack Peasant. There is a script that makes them male in the code that is separate from their character stats.
So far I have been able to do multiple interactions with the characters. Ansel Motte's Tutorial Quests works using my method and depending how much you are willing to tweak Dialogue you can change not only the name but most of the pronouns for the interactions with the characters. This is because of how the game using names and girlids to trigger dialogue and organize the code. I used the Find and Replace method changing the name but I also read and edited the dialogue when there was dialogue associated with the characters. Ansel Motte and Bud are two characters with a lot of dialogue i changed Ansel to Angel and Bud to Bree changed Budmeister to Breemeister. Depending on your willingness to tweak out pronouns and cock references to pussy instead. You can make the narration and Dialogue into female gender as well. There is no easy tweak here you have to be willing to actually make the effort.
So far i have been able to recruit most of the map characters and I haven't run into any issue when I change their names completely. It has work so far but this is a big game so I haven't been able to test every Male quest.
The default of the game is all girlid's 299 or less are female unless Sex Apply designated them male which is why removing them (See below) from the code changes them to female. Most male NPCs that are captured in combat even special ones have a girlid of 300 or more. I use the official alternative picture pack for the girls. I then use the vanilla version for the males turned female. This way the two characters look similar but different enough.
I will provide people with the key Text change to /* Sex Apply */
1) Find Sex Apply in the html file. It should look like this...
Code:
<<if _npc.girlid lte 299>>
<<set _npc.sex to 0>>
<<else>>
<<set _npc.sex to 1>>
<</if>>
<<if _npc.girlid gte 23 and _npc.girlid lte 27>><<set _npc.sex to 1>><</if>>
<<if _npc.girlid is 19 or _npc.girlid is 21 or _npc.girlid is 29 or _npc.girlid is 30 or _npc.girlid is 31 or _npc.girlid is 33 or _npc.girlid is 34 or _npc.girlid is 37 or _npc.girlid is 38>><<set _npc.sex to 1>><</if>>
<<if _npc.girlid is 34>><<set _npc.body to 7>><</if>>
<<if _npc.girlid is 18 or _npc.girlid is 19>><<set _npc.mother to "Huskah">><</if>>
/* Aria gets her original paragon status set */
Code:
<<if _npc.girlid lte 299>>
<<set _npc.sex to 0>>
<<else>>
<<set _npc.sex to 1>>
<</if>>
<<if _npc.girlid is 19 or _npc.girlid is 37>><<set _npc.sex to 1>><</if>>
<<if _npc.girlid is 34>><<set _npc.body to 7>><</if>>
<<if _npc.girlid is 18 or _npc.girlid is 19>><<set _npc.mother to "Huskah">><</if>>
/* Aria gets her original paragon status set */
2) You will need to add in new pics but given that each character has a unique girlid and picture folder associated with that folder. You can put any girl's pictures into the male's folder. You will get unique pictures from events that show the male version but their sex scenes will be female and with female pics of the girl you chose to overwrite the males pics with. Do not remove the unique pictures as it can cause issue if the game can't access them.
I left your son and the WIXX boy male. This is because they wont be in any sex scenes and I am unsure if it will break anything if the game tried to create a son and you've made that ID a girl. I don't know exactly how the game handles pregnancy so didn't want to mess with that.
Again this is tested somewhat without issues but given how large the game is I think it works okay based on my tweaks.
If you use replace all with the names and don't manually go to each instance and read the narrative or dialogue you WILL get the game referring to the previous male characters as male because that all has to be manually changed. Some minor characters have the same name as a recruitable NPC so you need to be careful not to change their names as well.
The default of the game is all girlid's 299 or less are female unless Sex Apply designated them male which is why removing them from the code changes them to female. Most male NPCs that are captured in combat even special ones have a girlid of 300 or more. I use the official alternative picture pack for the girls so I use the vanilla version for he males. This way the two characters look similar but different enough.
I hope this these two posts explain how and it is clear what needs to be done. If there are questions please ask.