j01ntr0l1a

Member
Mar 23, 2022
430
267
Guys, thank you..(y)
And...how I increase HP? I get hurt, and I am not sure how to heal :O I thought maybe sleeping will return HP, or eating..


u can train stamina up to 130 increasing stamina increases health , u can also buy health implants from the doctor up to implant 2 i think, and Implant Mark 3 u can buy taking the Shuttle at the shuttle station in the Palace District and buying it there for 1.2 mill
 

Porrvald

Active Member
Sep 12, 2020
563
593
Hey folks, does anyone know if there is a way to organize the npc list? It's annoying having the most useless npcs in the first pages just because they appeared first
If you install the automation mod, then you can just drag and drop between slots, including follower slots.
 
  • Like
Reactions: dooka58

Porrvald

Active Member
Sep 12, 2020
563
593
And on that subject, I just realized that what I will focus on next is to figure out how make friends with css and then add an option to have the mod sidebar hidden / collapsed in the border and pop out on hover.

That should hopefully make it less distracting, possible to play with maximum zoom and in theory allow practically unlimited amount of space.
 
  • Like
Reactions: Sanctuary9566

Clemency

Active Member
Jan 21, 2024
512
527
Guys, thank you..(y)
And...how I increase HP? I get hurt, and I am not sure how to heal :O I thought maybe sleeping will return HP, or eating..
You can buy tendstims in certain shops like the general store near your house. Then you press the tendstim button located in the lower part of the screen, near your favorite NPCs portraits.
Screenshot 2024-08-04 071129.png

You can also assign nurses in NPC Menu -> Jobs and Titles. It's a title that you can grant them and is more effective if they do not have other jobs and are not followers once midnight hits (midnight is where most of the stat calculations happen). NPCs with 25+ stat in medicine will heal you and any hurt NPCs. You can hire Aiko or some other mercs with good starting Medicine stats. Caitlin, once you purchase her, starts with the second highest medicine stat among the unique NPCs (at 70, second only to Eve at 100). Some random captures can also RNG into high medicine stat. Some unique captures starts at a decent medicine stat too like Cassius Bauer and Truls Baardson.

If you assign a girl with medicine stat lower than 30 to the Academy (clear her jobs, go to NPC Menu -> Academy -> Administration and Domestic), she can increase her medicine stat, up to ~30 which is that course' medicine stat cap. Afterwards, homeschooling seems to be the only way to increase it reliably from ~30.
 
Last edited:
  • Like
Reactions: Gunner Rey

dayryuu1995

Newbie
Jun 3, 2017
25
55
I've just realized Sandman's mod has a tray image for all characters but my game does not use them for some reason. It just looks at the original image location. How do I fix this? Everything else seems to work fine.

So, for example, my game uses this 1722727541087.png instead of 1722727582871.png . For her it doesn't matter but some characters are so different from the original that it's super jarring seeing those 2 different versions.

Also... this will never leave my brain now
1722725907608.png

Edit: I've replaced every original image with it's Sandman version and I think I understand why a lot of it is not used. Still the portrait images are better imo and actually match the scenes so if that bugs anyone as it did me then replace every troop.jpg, edu_good.png and edu_goodsmall.png with it's Sandman version.
 
Last edited:

megamanx06

Member
Mar 13, 2019
172
197
How do you get the new books? The wiki says they're in the library of the palace, but there aren't any interaction options when I go to the Republic Palace in Crystal Heights. Do you need to advance the plot first?
 

Clemency

Active Member
Jan 21, 2024
512
527
How do you get the new books? The wiki says they're in the library of the palace, but there aren't any interaction options when I go to the Republic Palace in Crystal Heights. Do you need to advance the plot first?
Sundering Minds (Dominus trait) and The Mare (Master of Mares trait) are loots from the Aria rebellion questline.

I am not sure about The Departure, Henna's Medicine, and The Beyond. Maybe I need to reload an old save and do the palace raid again since I did a very early version of it that I might have missed a version that rewards it.
 
  • Like
Reactions: megamanx06

kiljaeden

Active Member
Jun 2, 2019
779
839
How do I cheat traits of randoms? For example this code is for a non-random npc, Lovisa. SugarCube.State.active.variables.npc.av1.traitwork = 100
What part of the code should I change for random 208 for example?
 

Clemency

Active Member
Jan 21, 2024
512
527
How do I cheat traits of randoms? For example this code is for a non-random npc, Lovisa. SugarCube.State.active.variables.npc.av1.traitwork = 100
What part of the code should I change for random 208 for example?
Code:
cheatgirlname = "mae"

for (const [key, value] of Object.entries(SugarCube.State.active.variables.npc)) {
    if (value.hasOwnProperty("girlname")) {
        if (value.girlname.toLowerCase() == cheatgirlname.toLowerCase()) {
            console.log(value.girlname+' identified as SugarCube.State.active.variables.npc.'+key);
            cheatgirl = SugarCube.State.active.variables.npc[key]
            console.log('Modify like this: cheatgirl.age = 18');
        }
    }
}
Replace "mae" with the first name of the NPC, press Enter.

Type in cheatgirl.traitwork = 100
 
Last edited:

Clemency

Active Member
Jan 21, 2024
512
527
Ideally I would like the uniques to start off missing some of the good traits and have there be quests for them that guarantee them gaining those traits but that takes a lot of work so I can understand why that's not currently implemented. No idea if there are plans for that but for instance the quest option for Mai Lynn where she starts depressed and completing her quest removes that is the kind of thing I like. You could just as easily add new traits that way.
I'm all for a medium length Loren quest where she hunts a fearsome beast and at the end of the questline, she gains Ammo Pack or Crackshot (or both but both might be a pipe dream).

An Ayden quest where we can upgrade his personal coilgun to increase its base damage from 45 AP to 75 AP or at the very least convince him to use other rifles/grenade launchers (Struver Overcharge trait is disabled unless he is using a coilgun).

A Prowler quest where we gain access to research that can restore limited intelligence to a prowler via a procedure in Hunt Research lab, allowing him to equip and use melee weapons.
 

Porrvald

Active Member
Sep 12, 2020
563
593
Code:
cheatgirlname = "mae"

for (const [key, value] of Object.entries(SugarCube.State.active.variables.npc)) {
    if (value.hasOwnProperty("girlname")) {
        if (value.girlname.toLowerCase() == cheatgirlname.toLowerCase()) {
            console.log(value.girlname+' identified as SugarCube.State.active.variables.npc.'+key);
            cheatgirl = SugarCube.State.active.variables.npc[key]
            console.log('Modify like this: cheatgirl.age = 18');
        }
    }
}
Replace "mae" with the first name of the NPC, press Enter.

Type in cheatgirl.traitwork = 100
The updated version is much nicer to use :)
1722729149081.png
 

Joe Steel

Engaged Member
Jan 10, 2018
2,388
3,180
Playing the new version with the slave market saturation mechanic, and some things feel off. First of all, market saturation isn't going to change based on the MC selling a slave or two. There are, according to the wiki, 156,000 slaves in the city. Assuming that slaves are bought/sold every tens years (probably less than that for pleasure slaves, more than ten for labor slaves), 15,600 slaves are processed every year, at two markets. That's between forty and fifty slaves per market per day. One or two more or less are not going to move any needles.

The mechanic works if the cause of market surpluses and shortages is of sufficient scale, like a bunch of slaves captured in a war or a sudden demand for slaves to build a canal or whatever. But, in that case, the MC (being a slaver of a slaver family) will surely hear about the cause and how long its effects are likely to last. The slaver then knows when to hold slaves for sale later (and buy new slaves at a discount) and when to rush them to market to meet an increased demand. In the game, the MC doesn't know what the market is like until he tries to sell a slave. That's not realistic nor is it fun.

Personally, I think the mechanic is too fiddly to be worth retaining. But, if it is retained, it should be altered so that:
1. Player sales does not affect market conditions
2. The player should know the reasons for, and expected duration of, market shortages and surpluses
3. Market surpluses should lower the price for slaves the MC wants to buy, as well as the price the MC gets for5 slaves he sells (and vice-versa when there are market shortages) and thus
4. Changes in market conditions become a strategic planning issue, not a mere gameplay mechanic.

Also, completely separately, you can buy tendstims for $35 by buying them individually, or $40 if buying in bulk. That is a mistake, no?
 

khumak

Engaged Member
Oct 2, 2017
3,693
3,723
by the way how you fuck adrienne now?, i dont get the option to do it like before
She was changed awhile ago so she starts a bit younger. She's most likely 17 when you pick her up. Gotta wait for her birthday.
 

Clemency

Active Member
Jan 21, 2024
512
527
Personally, I think the mechanic is too fiddly to be worth retaining. But, if it is retained, it should be altered so that:
It's a preemptive game balance addition. You can now capture every single enemy in a fight (except the scripted to be uncaptureable ones like the first slot in a generic bounty), not just 1 male and 1 female. This is so there is some control in the economy of the game and will probably be subject to balance changes in future patches.

Screenshot 2024-08-04 091104.png
Screenshot 2024-08-04 091203.png
 
  • Yay, new update!
Reactions: Warscared

kiljaeden

Active Member
Jun 2, 2019
779
839
Code:
cheatgirlname = "mae"

for (const [key, value] of Object.entries(SugarCube.State.active.variables.npc)) {
    if (value.hasOwnProperty("girlname")) {
        if (value.girlname.toLowerCase() == cheatgirlname.toLowerCase()) {
            console.log(value.girlname+' identified as SugarCube.State.active.variables.npc.'+key);
            cheatgirl = SugarCube.State.active.variables.npc[key]
            console.log('Modify like this: cheatgirl.age = 18');
        }
    }
}
Replace "mae" with the first name of the NPC, press Enter.

Type in cheatgirl.traitwork = 100
Doesn't work for me. Can you give me the full code for Mae's workaholic trait please? I don't know what I'm doing wrong.
 

jack_px

Member
Oct 21, 2016
195
27
She was changed awhile ago so she starts a bit younger. She's most likely 17 when you pick her up. Gotta wait for her birthday.
oh didnt notice her age xD, by the way can you still have a threesome?, because now i only see 1 on 1 options
 

Porrvald

Active Member
Sep 12, 2020
563
593
Doesn't work for me. Can you give me the full code for Mae's workaholic trait please? I don't know what I'm doing wrong.
1. Follow the cheat link in first post of this thread.
2. Paste the code blob into console and press enter
3. Type mae.traitwork = 100 and press enter.
4. Click on something (any button) for the stats to reflect new values in game.
5. If it doesn't work. Post screenshot.

You will also find all trait names in one of the spoilers of that post.
 
  • Like
Reactions: kiljaeden

Clemency

Active Member
Jan 21, 2024
512
527
Doesn't work for me. Can you give me the full code for Mae's workaholic trait please? I don't know what I'm doing wrong.
I edited that post because there was spacing issues.

Once you press Enter, the text I highlighted in red should appear. Then you enter cheatgirl.traitwork = 100.
Screenshot 2024-08-04 091744.png
After that, you just do something like switch from Traits to Stats page, or exit and enter the NPC menu, anything that allows the page to refresh itself and update.
 
  • Like
Reactions: kiljaeden
4.50 star(s) 128 Votes