l.lotler

Newbie
Nov 15, 2017
35
48
How does processing scrap iron in a workshop work? I've got the function turned on, 17k of the stuff lying around and nothing is being done with it. Why is that?
 

desmosome

Conversation Conqueror
Sep 5, 2018
6,566
14,913
I think the logic is that she fights harder if you're in the mood to allow her to fight for whatever "liberation" is in her mind. If you manage to break Clea past whatever mental safeguards she's put up (By console commands or otherwise) it's more or less your character succeeding in convincing Clea she doesn't need to fight for "liberation" anymore.
Yeah, I get the logic and immersion factor. But we could also consider that a perfectly trained slave might use her honed skills for the benefit of her master (although she can't be enslaved, but fully trained mercs and servants still act as slaves and even call themselves such at times lol). And AFAIK, Liberation is a mental state that she has, so tacking on an assassination combat skill onto it doesn't seem truly necessary. It's the only combat skill that gets disabled by training values.

It wouldn't be farfetched to separate her assassination from liberation, tbh. And make liberation even harder to suppress if they want to.
 

Lurker452

Member
Jun 13, 2022
178
249
How does processing scrap iron in a workshop work? I've got the function turned on, 17k of the stuff lying around and nothing is being done with it. Why is that?
It only processes what comes from the merchandise processed *while it is on*. This allows you to save scrap for injectors.
 

Xythurr

Well-Known Member
Oct 29, 2017
1,337
2,728
Hey guys is there much different between making a young MC over an older one? I usually make an older one so I was just wondering if it's different enough to be worthwhile.
 

desmosome

Conversation Conqueror
Sep 5, 2018
6,566
14,913
Hey guys is there much different between making a young MC over an older one? I usually make an older one so I was just wondering if it's different enough to be worthwhile.
I made young one for the stats at first, then I saw daddy issues perk that so many girls have and went with a daddy mc lmao.
 
  • Like
Reactions: Xythurr

desmosome

Conversation Conqueror
Sep 5, 2018
6,566
14,913
Sorry I meant character interactions.
There are minor dialogue changes when they call for the age variable. Like Ansel is supposed to be your childhood friend or something, and he mentions something about the weirdness of this backstory if the MC is like 18 years old and he's 35 lol.
 
  • Haha
Reactions: Xythurr

Xythurr

Well-Known Member
Oct 29, 2017
1,337
2,728
There are minor dialogue changes when they call for the age variable. Like Ansel is supposed to be your childhood friend or something, and he mentions something about the weirdness of this backstory if the MC is like 18 years old and he's 35 lol.
I wish I could murder that thieving bastard.:LOL: I threw him prison once. I wish it would give me a dialogue option for when he steals so I can tell him why he's being punished.
 
  • Haha
Reactions: desmosome

bolondro2

Active Member
Oct 12, 2018
698
745
Does anyone know if the latest version 8.41c adress the issue that the incorrect decreasing of Dengi numbers? (fighting them in the field don´t decrease it´s numbers and City control over 15.000 -10 not taking into account?) I can not find any reference about this in the changelogs
 

cleanfeel

Active Member
Jun 16, 2017
733
2,099
For those of you who wants to edit some of the code related blockers on age, incest, etc. Here's some tips I found.

1. You only need to edit the start_game.html file, though it's not pretty to read it's very easy
2. You should backup your file. I used something like git but you can also just save a master copy before you potentially mess things up and break the game file
3. Look for the following variables and edit them. I use VSCode, but you can easily do this with a basic editor like Notepad

// Censor Variable
set $cens to 1

// Some blocks based on younger than 18
_npc.age lte 17
_age gte 18
$age gte 18

// Some stuff checking is not your child
_mychild isnot true

// Misc variables I found. I don't think these are needed but they're interesting to read
_kidblock
_blockhsex
_blocksex
_blocksex2
_blocksex3
_incestblock

4. In general, there's setting the variable and checking the variable. It seems like $cens sets a bunch of variables like this
_blocksex
_blocksex2
_blocksex3
So theoretically if you just replace that line, you can unblock some sex content. However, there's still hardcoded age stuff, like checking is someone is >= 18 before letting them say some dialog.

5. Abbot Roo Dialog
If you couldn't tell from my profile, I love NTR. Here's some dialog where you can offer a little teenager and let Roo fuck her mouth.

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

Hope this helps...I'm not going to release my copy of the file, you just have to play with it yourself.
 
Last edited:

l.lotler

Newbie
Nov 15, 2017
35
48
It only processes what comes from the merchandise processed *while it is on*. This allows you to save scrap for injectors.
Well, that sucks. I'd much rather refine it (and other raw materials like c-boards) than be forced to mess with injectors and stimpacks. If "accidental" refinement is the problem, why not add a queue button similar to the way we can add merchandise?
 

Clemency

Active Member
Jan 21, 2024
998
1,313
It's the only combat skill that gets disabled by training values.
When you make "combat" a qualifier, sure, maybe. It is not the only trait removed by training values. In fact, I would consider Malevolent a combat trait and it can be removed by training kindness.
And make liberation even harder to suppress if they want to.
If. Clea is a tier request NPC and I do not think her creator wants to. Trade offs is a cornerstone of Clea's design. You either go ooga booga or you keep her as is and have the 3rd/4th best combat NPC in the game.
For those of you who wants to edit some of the code related blockers on age
Can we please stop fucking with the age blockers.
 

Lurker452

Member
Jun 13, 2022
178
249
Well, that sucks. I'd much rather refine it (and other raw materials like c-boards) than be forced to mess with injectors and stimpacks. If "accidental" refinement is the problem, why not add a queue button similar to the way we can add merchandise?
I'd much rather see an option to weave cloth next.
 
  • Heart
Reactions: l.lotler
Sep 26, 2024
232
181
For those of you who wants to edit some of the code related blockers on age, incest, etc. Here's some tips I found.

1. You only need to edit the start_game.html file, though it's not pretty to read it's very easy
2. You should backup your file. I used something like git but you can also just save a master copy before you potentially mess things up and break the game file
3. Look for the following variables and edit them. I use VSCode, but you can easily do this with a basic editor like Notepad

// Censor Variable
set $cens to 1

// Some blocks based on younger than 18
_npc.age lte 17
_age gte 18
$age gte 18

// Some stuff checking is not your child
_mychild isnot true

// Misc variables I found. I don't think these are needed but they're interesting to read
_kidblock
_blockhsex
_blocksex
_blocksex2
_blocksex3
_incestblock

4. In general, there's setting the variable and checking the variable. It seems like $cens sets a bunch of variables like this
_blocksex
_blocksex2
_blocksex3
So theoretically if you just replace that line, you can unblock some sex content. However, there's still hardcoded age stuff, like checking is someone is >= 18 before letting them say some dialog.

5. Abbot Roo Dialog
If you couldn't tell from my profile, I love NTR. Here's some dialog where you can offer a little teenager and let Roo fuck her mouth.

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

Hope this helps...I'm not going to release my copy of the file, you just have to play with it yourself.
// Censor Variable
set $cens to 1
So, this is the only one that needs to be changed for incest?
 
4.50 star(s) 156 Votes