J007ss

Newbie
Apr 17, 2021
49
19
There is no cheats to activate.

You can however still cheat via and via console (CTRL + SHIFT + J in Chrome).

But to do so you need to figure out which things you want to modify and to do that, you can search the thread just as well as anyone else.
BUG02a.png BUG02b.png
Could you please explain the parameter for the NPC position in the NPC MENU?
My DAKOTA is confused about the appearance of 2 instances, and I want to remove one from the SAVE.
 

Porrvald

Active Member
Sep 12, 2020
594
630
Could you please explain the parameter for the NPC position in the NPC MENU?
My DAKOTA is confused about the appearance of 2 instances, and I want to remove one from the SAVE.
To remove her from slot 88 type this command in console:
Code:
SugarCube.State.active.variables.slot[88]=0
How it works?
SugarCube.State.active.variables.slot[x] = y
x = slot number
y = avid of the npc occupying the slot. 0 = empty
 
  • Red Heart
Reactions: J007ss

J007ss

Newbie
Apr 17, 2021
49
19
To remove her from slot 88 type this command in console:
Code:
SugarCube.State.active.variables.slot[88]=0
How it works?
SugarCube.State.active.variables.slot[x] = y
x = slot number
y = avid of the npc occupying the slot. 0 = empty
Thank you so much.
 

Darkbreed

Member
Dec 17, 2020
203
182
I love the game, just one big issue-

during character creation, I put very few skillpoints in sex, and there are No ways to improve the sex skills ( I cant get them to orgasm even once), I strongly recommend that in future versions maybe we can pay prostitutes to teach us how to have sex or something like that.
 
  • Like
Reactions: LizJ

Clemency

Active Member
Jan 21, 2024
615
660
I love the game, just one big issue-

during character creation, I put very few skillpoints in sex, and there are No ways to improve the sex skills ( I cant get them to orgasm even once), I strongly recommend that in future versions maybe we can pay prostitutes to teach us how to have sex or something like that.
You do improve your copulation stats. It can be tricky very early on and you have to spend some time raising their arousal first through bath and seduction.

If you recruit Milou before the rebel quest tells you to recruit her the game doesn't recognize that she's been recruited and the quest can't be completed. I fiddled around with save file editing to get it to flag, but I either didn't figure out which variable I needed to modify or I did and it didn't work. Has anyone here found a solution?
Huh. The game recognized mine. I had her for a while too. Undying affection, completed her mini quest, the works. You might have to send your save file in the discord bug reports if so.
 

J007ss

Newbie
Apr 17, 2021
49
19
If you recruit Milou before the rebel quest tells you to recruit her the game doesn't recognize that she's been recruited and the quest can't be completed. I fiddled around with save file editing to get it to flag, but I either didn't figure out which variable I needed to modify or I did and it didn't work. Has anyone here found a solution?
When you talk to her, is there an option to involve her in the rebellion?
 

khumak

Engaged Member
Oct 2, 2017
3,716
3,748
I love the game, just one big issue-

during character creation, I put very few skillpoints in sex, and there are No ways to improve the sex skills ( I cant get them to orgasm even once), I strongly recommend that in future versions maybe we can pay prostitutes to teach us how to have sex or something like that.
Copulation does increase through use, it just takes awhile. I'm playing a relatively new game right now where I started at 20 copulation skill. I'm up to 30 now, most of it through use. I think I got 4 guaranteed points from the escorts on the mastersphere when I went up there to recruit Sky but the rest was just from having sex with random girls at home. I believe it caps at 100 through use but I haven't had a game where I confirmed that through testing yet. Kissing is the same if you want to boost that, do a LOT of seduction where you're kissing as much as possible. You will occasionally gain skill.

Bondage and Flagellation are a lot harder. It's possible to get a point of bondage occasionally through rough petting during seduction but it's not very common. Not sure if there are any other ways to do it at home. That's the only way I've ever gotten it at home. Flagellation is even harder. I have gained a grand total of 1 flagellation point, ever at home through whipping the girls. So to me the only really viable way to improve those is to pay to whip the girls in the Velvet room at Dockgraves. That gives you a reasonable chance to gain a random point of flagellation or bondage up to 70 of each. At that point you can take the bondage class and read the books and that will get you above 100 in both. It takes at least a few months and a lot of money but it works.

Skill gains from sex can be streaky sometimes too. I just gained 5 copulation in a single sex scene just now. It's more common to gain zero though.

If you want guaranteed increases there is also the option to just go up to the mastersphere and rent a room there. Hire the escorts every night and it's +1 copulation every day. I don't know what the cap is for that.
 
Last edited:

Porrvald

Active Member
Sep 12, 2020
594
630
Could anyone share a save with all world locations unlocked?

I'm currently adding travel options to the automation mod and would like to make the world map complete without having to finish all quests or crawl through the game code to do so.
 

ShaowWolf

New Member
Jan 25, 2022
3
0
Here is an updated version:
Code:
var cheatgirlname = "zahira"
var cheatgirl
for (const [key, value] of Object.entries(SugarCube.State.active.variables.npc)) {
    if (value.hasOwnProperty("girlname")) {
        if (value.girlname.toLowerCase() == cheatgirlname.toLowerCase()) {
            cheatgirl = eval("SugarCube.State.active.variables.npc."+key)
            console.log(value.girlname+' identified as SugarCube.State.active.variables.npc.'+key)
            console.log('Modify like this: SugarCube.State.active.variables.npc.'+key+'.age = 40')
            console.log('Or like this: cheatgirl.age = 40')
        }
    }
}
You don't have permission to view the spoiler content. Log in or register now.

Is there by chance an updated version as all I get is "Undefined" when I try this in Chrome, or am I missing something obvious ?
 

Porrvald

Active Member
Sep 12, 2020
594
630
Is there by chance an updated version as all I get is "Undefined" when I try this in Chrome, or am I missing something obvious ?
That is the updated version.
You are supposed to use it like this:
1. Paste code blob, replace Zahiras name with the npc you want to modify
2. Press enter
3. Type cheatgirl.something = some value
4. Press enter
5. Optionally repeat 3, 4 as many times as you like for other values (arrow key up on keyboard is very useful for this)
6. Done
You don't have permission to view the spoiler content. Log in or register now.

If not working, please share screenshot from console.
 

Fanvor

Member
Jul 1, 2017
124
279
Is there some way to deal with attention whore/nympho characters? I don't want them to eat up a whole day of interactions.
 

Clemency

Active Member
Jan 21, 2024
615
660
Is there some way to deal with attention whore/nympho characters? I don't want them to eat up a whole day of interactions.
If this is Bud Walton, you can just buy a NeuraClean from the Transit Department in the Palace District if you do not want to deal with it . Though just by hosting pool parties for everyone in the upgraded gazebo in your backyard, you can easily stave off attention-whore.

Neuraclean instantly removes the following traits:

View attachment Screenshot_2024-06-22_092339.webp

If by nymphomaniac, you mean regular girls, they're probably fine if you keep your household contentment levels up.
 
  • Like
Reactions: Fauno36

HammieSammie

New Member
Sep 21, 2022
12
19
Could anyone share a save with all world locations unlocked?

I'm currently adding travel options to the automation mod and would like to make the world map complete without having to finish all quests or crawl through the game code to do so.
Hopefully, this save should do it.
 
  • Red Heart
Reactions: Porrvald

khumak

Engaged Member
Oct 2, 2017
3,716
3,748
If this is Bud Walton, you can just buy a NeuraClean from the Transit Department in the Palace District if you do not want to deal with it . Though just by hosting pool parties for everyone in the upgraded gazebo in your backyard, you can easily stave off attention-whore.

Neuraclean instantly removes the following traits:

View attachment 3846177

If by nymphomaniac, you mean regular girls, they're probably fine if you keep your household contentment levels up.
Personally, I find attention whore to be too much of a bother even with pool parties unless you always do one every single day. So I just grab 2 doses of Neuraclean and mind wipe both Bud and Sofia. My Bud has ammo pack and scavenger, nothing else. My Sofia has Brawler, nothing else. And they both love me now without me having to do pool parties every day.
 
Last edited:

uterus

Newbie
Sep 14, 2018
89
30
so ive farmed legendary bounties for hulk parts but that source seems to have dried up.
ive not gotten any parts in the last 5 runs even with reloading.
is there a limit to the amount of hulk parts you can loot?
 

Bryan_Colt

Active Member
Jul 19, 2017
645
427
I reach the end to the quest for Aria only to get WIP how dull.

Even now the bookstore quest is still in WIP.

Dakota's sister is all alone there she can run the store but maybe from my house.

Not to mention i want to go to war with Kyamanto Hall their business should be ours by now.

Those girls over at Divine Juice should be given a quest or bought or just make us fight for them with politics or just a very difficult battle.

Also those girls at the docks should be replaced if we bring new ones and keep the old ones not to mention that madame is on my rack list.
 
  • Like
Reactions: Ku-chan

khumak

Engaged Member
Oct 2, 2017
3,716
3,748
so ive farmed legendary bounties for hulk parts but that source seems to have dried up.
ive not gotten any parts in the last 5 runs even with reloading.
is there a limit to the amount of hulk parts you can loot?
There's a guaranteed and finite number of hulk parts you can get from the legendary bounties. There's an infinite number you can buy in the palace but the price goes up with supply.
 
  • Like
Reactions: uterus
4.50 star(s) 136 Votes