PSCW

New Member
May 15, 2020
11
0
Which vault mission exactly?
Lovisa quest called the vault. There is a door that needs a 4 digit code and she mentions the guy wrote things down. Just seems bugged because I dont have any option to find the note. Or Im missing something obvious.
 

elfhumper

Member
May 5, 2024
247
222
I found the quest variable

$quest_bro

but I'm unsure on how I'm supposed to change stuff. Not a scripter/programmer.....

What I do know its got something to do with the Tutorial as I see a line stating:

<<if $tutorial is 37>>
<<if $quest_bro is 0>>
What really happened to my brother? Maybe I should investigate the office and see if I can find anything that might shed a light on his disappearance.

<br><br>
<<if $invhold lte 4>>''NOTE!'' <br>This is a Tier2+ subscriber-only quest.<br>''Status:'' //Disabled.// <<else>>I did see a rather peculiar red note book lying on one of the bookshelves a couple of days ago (Go to Manage > Manage house > Office icon on the house layout map > Clues).<</if>>
<</if>>
You don't have permission to view the spoiler content. Log in or register now.
 
Mar 5, 2024
80
45
Well badass calculation is still as bad, as it was a few versions ago (as well as the advanced targeting algorithm).

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

I think the above examples should be enough to illustrate the current flaws in the advanced targeting algorithm and the current badass calculations.

Oh and the targeting algorithm (random rolls) also imply a few things about targeting (in non advanced combats) or where the targets are rolled randomly. Meaning if not all follower positions are used, but only 1 follower (and the follower has not the shadowborn trait and is neither wearing stealth armor nor natural armor), then we can get a targeting probability of 4/5 for the mc/pc, if the only follower is in the first follower slot, but we would get a targeting probabilty of 1/5 for the mc/pc, if the only follower is in the fourth follower slot (bottom most position).
 
Mar 5, 2024
80
45
HEY GUYS
I just want to ask how to enslave CLEA
Which code i should use ?
You do know that CLEA has status 5, which is higher than Einars status? Meaning she is no normal mercenary, but rather a paragon. So good luck with enslaving her, without editing the code or using the console.
 

elfhumper

Member
May 5, 2024
247
222
You do know that CLEA has status 5, which is higher than Einars status? Meaning she is no normal mercenary, but rather a paragon. So good luck with enslaving her, without editing the code or using the console.
As of v8.3.7 you can enslave Paragons without editing the code or using the console it's just difficult to do because of their high Intelligence. But Clea has the Liberated trait and as long as she has it you can't enslave her and I don't think Neuraclean can remove that trait either.
 
Last edited:

klmb1990

New Member
Aug 14, 2016
14
19
So I'm trying to grind intelligence and the wiki suggests you can get up to 90 intelligence from getting critical successes in poker.

My question is what version of poker game do they mean? The one at Furry's or the one at the the Dockgrave tavern. If its the latter what does critical success look like? I've gotten a 999 hand several times but never got an +INT off it.
 

elfhumper

Member
May 5, 2024
247
222
So I'm trying to grind intelligence and the wiki suggests you can get up to 90 intelligence from getting critical successes in poker.

My question is what version of poker game do they mean? The one at Furry's or the one at the the Dockgrave tavern. If its the latter what does critical success look like? I've gotten a 999 hand several times but never got an +INT off it.
The chance of it happening from poker is actually pretty low you're better off trying to do the RPG night events.
 

Roxas487

New Member
Mar 26, 2024
1
0
New simplified way of cheating via console:
1. Open console (CTRL + SHIFT + J in Chrome / Edge)
2. Copy and paste below code blob into the console and press enter.
Code:
function cheatShortcuts() {
  let slots = SugarCube.State.active.variables.slot
  for (let i = 1; i < slots.length; i++) {
    if (slots[i] > 0) {
      let npc = eval("SugarCube.State.active.variables.npc.av" + slots[i])
      let girlname = npc.girlname
      girlname = girlname.replace(/\W/,"") //Get rid of non-alpha-numerics
      window[girlname] = npc
      window[girlname.toLowerCase()] = npc
    }
  }
  window["mc"] = SugarCube.State.active.variables
  window["Mc"] = SugarCube.State.active.variables
  window["MC"] = SugarCube.State.active.variables
}

function startTimer() {
  autoRefreshTimer = setInterval(function () {
    cheatShortcuts()
  }, 1000)
}
clear()
cheatShortcuts()
console.log("Cheat shortcuts added. Examples:\nLovisa.virgin = true\nMaiLynn.traitscav = 100\nmc.cash = 1000000")
startTimer()
Result:
View attachment 3896575


Note: It automatically updates the shortcuts every second. You only need to repeat the code blob again after reloading page.

You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
Link to additional cheats


Latest bug fix: 2024-09-12; npc name filter improved by JacksWastedLife 2024-11-08
Not sure how many others will see this, but for the simple minded fellas like me (I took a few years of compsci, so it helped, along with mercy to understand it);
Don't be dismayed by the "excess of text" in the code. It is legit as most of it does the work for you... it looks daunting at first, but with a little bit of coding intellect you will notice they did the brainwork for us. Many of us (myself obviously included) are used to using the exaggerated string that uses "Sugarcube", but in this case, it shortens it to such a degree that'll have us wishing people offered it for other html games such as "Become Someone". The "Result" image summarizes it best, but sometimes it does help to study on this type of stuff (please don't use porn as a reason... please) but to shorten my layman's explanation, Imitate what the white box presents. Instead of using "Sugarcube" string/method, just input the character's identity (mc... michelle... astrid and so on) followed by what you wish to modify. "mc.ranged = x" can be used as another example.
~Being a sheep isn't a bad thing, it's the wolves that are feared and hated.
 

Clemency

Well-Known Member
Jan 21, 2024
1,200
1,666
I know I clicked on it as I clicked on everything on the screen but I will try again. Thanks
I literally highlighted the number on the table, 8812. That's the code.
As of v8.3.7 you can enslave Paragons without editing the code or using the console it's just difficult to do because of their high Intelligence. But Clea has the Liberated trait and as long as she has it you can't enslave her and I don't think Neuraclean can remove that trait either.
Clea and Ayden are hardcoded to not be enslaved and the button just never shows up. There's no trait responsible for it. It's just part of their lore. So yeah, you would have to change the code directly. You will have to wait for someone else to figure out which part of the code though.
So I'm trying to grind intelligence and the wiki suggests you can get up to 90 intelligence from getting critical successes in poker.
You can also increase your chances by marrying a girl and going to the cafe with her in Events & Activities (an option that shows up for wives only, seen below). Socializing with her there can raise your intelligence if your intelligence is lower than her. If it's much lower than hers, the roll will fail though so you will have to find someone near your intelligence stat. If you have 70, find someone 75, etc. The wife can also raise her intelligence here up to 100. The best one for this is the . Her vaginal orgasms in normal sex can increase her intelligence up to 120. So you marry her, go to the cafe, increase your intelligence, have sex with her to raise her intelligence, repeat again.

Screenshot 2024-12-10 172346.png
 

GD-studios

The Budman
Game Developer
Nov 20, 2021
944
3,590
Well badass calculation is still as bad, as it was a few versions ago (as well as the advanced targeting algorithm).

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

I think the above examples should be enough to illustrate the current flaws in the advanced targeting algorithm and the current badass calculations.

Oh and the targeting algorithm (random rolls) also imply a few things about targeting (in non advanced combats) or where the targets are rolled randomly. Meaning if not all follower positions are used, but only 1 follower (and the follower has not the shadowborn trait and is neither wearing stealth armor nor natural armor), then we can get a targeting probability of 4/5 for the mc/pc, if the only follower is in the first follower slot, but we would get a targeting probabilty of 1/5 for the mc/pc, if the only follower is in the fourth follower slot (bottom most position).
Thanks. Cleaned up some scripts after reading your list. (y)

Stealth armor has an additional checker further down in the same passage that should exclude it from "_badass". The case of additional "_badass" due to follower melee weapons is a known issue (engine limitation/poor design) that I'll hopefully be able to fix in a not-too-distant update. Atm, the enemy can't remember which weapon that follower used in his/her last round.
 

elfhumper

Member
May 5, 2024
247
222
Clea and Ayden are hardcoded to not be enslaved
Not really hardcoded their ID's are just not in the Affect/Enslave section the only 2 that have a direct hard block are not even Paragons is Celeste and Erica Sunderland if you don't enslave them when you do Conner's quest you lose that option completely.
But either way it's an easy change to make to get the option to show up.
 

Foobert

Member
Oct 16, 2017
184
99
So I'm trying to grind intelligence and the wiki suggests you can get up to 90 intelligence from getting critical successes in poker.

My question is what version of poker game do they mean? The one at Furry's or the one at the the Dockgrave tavern. If its the latter what does critical success look like? I've gotten a 999 hand several times but never got an +INT off it.
  1. Find the Starborn Stormborn.
  2. Bang her silly.
  3. Marry her
  4. Hang out with her at the cafe
You can mix up the order with 2, 3 and 4 if you like. Just remember that she needs to be smarter than you if you're going to raise your intelligence.
 
Last edited:
4.40 star(s) 169 Votes