tooldev

Active Member
Feb 9, 2018
863
817
184
Is there a way to arrange your household staff? I'm starting to collect more than a couple of dozen and it'd be wonderful if I could sort by purpose.
No sorting of that sort. You manually moving them to certain pages and renaming those, is about all the organisational help there is.
 
  • Sad
Reactions: sillyrobot

Crimson Fire

Member
Mar 12, 2022
230
544
207
There's a simpler method that doesn't modify any of your files, just paste this into the console (press F12, click console tab):

SugarCube.State.active.variables.npc.av24.girlid = 102
This changes av24 (Jack Peasant) into av102 (an RNPC), but you can replace that with any other number that is in the Pics or AvRan folders.

For a Lovisa clone (and a full set of renders): SugarCube.State.active.variables.npc.av24.girlid = 1

While this should work with all NPCs, I haven't tested it so I don't know how well it'll work, especially in quests and with Ansel. Quest pictures would be unaffected so they'll show the original male NPC.

To change the name:
SugarCube.State.active.variables.npc.av24.girlname = Jackie
SugarCube.State.active.variables.npc.av24.girlnames = Jackie's

For a list of all variables:
SugarCube.State.active.variables.npc.av24
Then click the arrow and change whatever you want!
Changing the girlid breaks quests and dialogue tied to the NPC as many quests and Dialogue is tied to a character's girlid. So while you method is easy it breaks the game. So not an option in my opinion.
 
  • Like
Reactions: JGucci

tooldev

Active Member
Feb 9, 2018
863
817
184
Is there a way to arrange your household staff? I'm starting to collect more than a couple of dozen and it'd be wonderful if I could sort by purpose.
To lighten the sad face: It made me scream at times until I forced myself to behave with the NPC like writing Arabic - right to left. So making the last page my household/fixed characters page and then moving to the left from there. This also helps when adding a bulk of NPC to your household because now they land on a blank first page and get sorted out from there.
 

RenWilson

Newbie
Oct 18, 2024
31
34
28
Does the prevent assaulting ?
This one is a problem of mine as well. After I fiddle with my save file with an file editor (changing the lawful trait to other, more useful trait) the invisible Carroza has somehow appeared! Looks like the lawful trait prevents you from even interacting with the family.
 
  • Like
Reactions: GmFn1869

JGucci

Newbie
Jan 12, 2019
27
36
112
Changing the girlid breaks quests and dialogue tied to the NPC as many quests and Dialogue is tied to a character's girlid. So while you method is easy it breaks the game. So not an option in my opinion.
True, I've edited my post accordingly. Good luck with your testing!
 

Crimson Fire

Member
Mar 12, 2022
230
544
207
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 an update...

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 */
Replace it with this
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 */
So this will make all the main male characters female. It will not change the random characters you can capture and the special NPC you can capture either. But the mercenaries you can hire are changed to female.

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.
 

smallst8

Newbie
Jun 7, 2018
20
21
148
Don't know if anyone has talked about it yet. I have the wega armor on MC. Quartermaster has 88 Science. According to the discription High Tech armor should be repaired by 1 every day if anvil is installed. My duraplate is but my Wega is not.
 

Clemency

Well-Known Member
Jan 21, 2024
1,215
1,715
249
Don't know if anyone has talked about it yet. I have the wega armor on MC. Quartermaster has 88 Science. According to the discription High Tech armor should be repaired by 1 every day if anvil is installed. My duraplate is but my Wega is not.
Oh right. It is not in the quartermistress description. She cannot repair the highest tier armors, HULC and WEGA. They must be repaired by the MC himself. HULC costs HULC parts to repair. WEGA costs 300 nanites and 2 durasteel to repair.

Does this actually do anything?
Not right now. But it will somewhere down the line, probably. Not that it would be a problem to a properly established players I think.
 
Last edited:

MisterPinkie

Newbie
Dec 12, 2021
44
167
133
I only did a small concept test for a couple of weeks, so I haven't really tried it out yet. But from the small test that I did, it does seem very feasable.

The idea is not to play as a professor forever. It is basically just a means to get a really good start.

One of the main concerns, before I start over and do the full run, was if unlucky trait is worth 25 creation points.

Turns out that it is 1.5% chance (0.02 x 0.75) for one of the following things to happen when you go to bed:
health - 10
cash - 25
health - 3
cash - 10
cash - 30
cash - 50 and health - 3
Influence - 40
health - 15
cash - 70
cash - 40
And a matching text about how you did a face plant or pinched your finger earlier in the day.

If not bothered by the occasianal message telling you that you are a clutz, it is by far the best negative trait of them all, with an average daily loss of $0.34, 0.05 hp and 0.06 influence.

I'm still not convinced about the limp, so I guess I will have to experiment a little on that topic.
After seeing the math, the only minor annoyance seems to be the influence loss- though even that's regained by doing a daily bounty. I guess the health lost at the start of a day might occasionally be a bother too.

On an unrelated note, I had a question for anyone that knows- I saw on the wiki it says Adora's quest is only available if you start as an expert slaver- if you get her with the 50 point perk, can you still get the quest? If not, is there a way to save edit or cheat so the game thinks I did? Don't wanna start a new playthrough and find out the rewards aren't really worth the 200 point investment.

(The answer is yes btw, took her for 50 points and still got her quest at amiable affection)
You don't have permission to view the spoiler content. Log in or register now.
Unsure if expert slaver changes rewards, but I doubt it.
 
Last edited:

poloz

Newbie
May 28, 2019
25
13
148
Why the Gregory guy(father of Lovisa) is showing "Venomous" Affection? It happened automatically.
 
4.50 star(s) 172 Votes