I've never used the mod myself, but the description suggests it should trigger ~72 weeks in?Hey all, do anyone know when you get special force event? Should i wait for a hundred of weeks or so?
I've never used the mod myself, but the description suggests it should trigger ~72 weeks in?Hey all, do anyone know when you get special force event? Should i wait for a hundred of weeks or so?
What's the search string to find slaves that have gotten noticeable facial surgery?
slave.faceImplant > 34
slave.faceImplant > 34 && slave.faceImplant < 65
Ah, okay, I see what I was doing wrong. Thanks.This will also return slaves with "Heavily Reworked" and "Uncanny Valley" faces.Code:slave.faceImplant > 34
If you want only slaves with "Noticeable Work", it's:
Code:slave.faceImplant > 34 && slave.faceImplant < 65
All dairy slaves get implanted with the pro-lactation implant (unless milkable balls, i think) however with the encourage natural lacatation rule the dairymaid can essentially skip that part to get similar outputs. It also might reduce breast growth to some extent if you encourage natural lactation(big maybe, because lactation naturally increases breast growth already). Note that the lactation implant doesn't mess up with purity FS so typically unless you want to avoid surgery as a prospect theres not much point in encouraging natural lactationIn the Dairy, what's the difference between "Restrict maximization surgery" and "Encourage natural lactation"?
Did you use the default prompts or did you write your own for Pony?Tried the Ai image generation with Pony diffusion and some loras, the result is pretty good ngl, what sampler would you guys recommend ? I used Euler A because its fast, but I would get some weird glitches from time to time...
wrote my own, basically added all of the score9,score8, etc + a 2.5d lora, rating_explicit, concept_art,then BREAK,then a fairly standard Pony Negative prompt (if you need inspiration go browse a few images on civitai).Did you use the default prompts or did you write your own for Pony?
Really? None of my Dairy slaves have ever been given the pro-lactation implant, as far as I can tell.All dairy slaves get implanted with the pro-lactation implant (unless milkable balls, i think) however with the encourage natural lacatation rule the dairymaid can essentially skip that part to get similar outputs. It also might reduce breast growth to some extent if you encourage natural lactation(big maybe, because lactation naturally increases breast growth already). Note that the lactation implant doesn't mess up with purity FS so typically unless you want to avoid surgery as a prospect theres not much point in encouraging natural lactation
Restricting maximization surgery I can't be wholly sure on what it does exactly. I'd presume it'd stop the implant (maybe theres something it can do for male slaves in the dairy?) and nothing else.
I believe female PCs can carry a baby for them to raise their opinion, but beyond that I don't know.Any tips on improving the Societal Elite's opinion of you early in Eugenics? The Societal Elite have much stricter requirements for passing the Breeder Eligibility exam if they have a negative opinion of you (so much so that I don't currently have any slaves that can pass the breeding exam).
Open the console (press F12) and check the value ofAny tips on improving the Societal Elite's opinion of you early in Eugenics? The Societal Elite have much stricter requirements for passing the Breeder Eligibility exam if they have a negative opinion of you (so much so that I don't currently have any slaves that can pass the breeding exam).
V.failedElite
. This is the (negative) opinion of the SE about you. It must be lower than 101, in order to have lax requirements.V.failedElite
by 250 points.V.failedElite
goes down by 10 or 5 points per week, depending on if you have redecorated the arcology or not), and/or you can enact FS policies (-1 per policy per week, unless you're also a paternalist: those future societes don't go well together).V.failedElite
is just decreased by 1 point per week, plus another point if the non-Elite pays additional taxes to avoid sterilization.Ah, I see. Thank you.Open the console (press F12) and check the value ofV.failedElite
. This is the (negative) opinion of the SE about you. It must be lower than 101, in order to have lax requirements.
If it's very high, and you already have a slave who has passed the breeding exam, the easiest way is: marry her and choose the "Impregnation ceremony". This alone will lowerV.failedElite
by 250 points.
If that variable is high, but not so much, you can get pregnant for the elite and carry a baby (V.failedElite
goes down by 10 or 5 points per week, depending on if you have redecorated the arcology or not), and/or you can enact FS policies (-1 per policy per week, unless you're also a paternalist: those future societes don't go well together).
Other than that,V.failedElite
is just decreased by 1 point per week, plus another point if the non-Elite pays additional taxes to avoid sterilization.
When your slaves are 25yo or older, stimulants are less effective. Other factors are involved, such as: "current height" vs "expected height" (based on your slaves' age and their genes), diet, quirks, hormones and their balance.Is there an age after which growth stimulants just won't work on a slave? Or is there also luck involved? It's hard to tell if there's an element of randomization or not...
case Drug.GROWTHSTIM:
maxGrowthAge
, but I don't know if you can increase it (and recompile the game) without introducing any bugs.As an addendum to this, it seems your PC must be visibly pregnant to get the -10 or -5 points each week. (Open the console (press F12) and check the value ofV.failedElite
. This is the (negative) opinion of the SE about you. It must be lower than 101, in order to have lax requirements.
If it's very high, and you already have a slave who has passed the breeding exam, the easiest way is: marry her and choose the "Impregnation ceremony". This alone will lowerV.failedElite
by 250 points.
If that variable is high, but not so much, you can get pregnant for the elite and carry a baby (V.failedElite
goes down by 10 or 5 points per week, depending on if you have redecorated the arcology or not), and/or you can enact FS policies (-1 per policy per week, unless you're also a paternalist: those future societes don't go well together).
Other than that,V.failedElite
is just decreased by 1 point per week, plus another point if the non-Elite pays additional taxes to avoid sterilization.
V.PC.bellyPreg >= 1500
to be precise.)(slave.physicalAge > 24) ? 1000 : 500
condition ? value_if_condition_is_true :value_if_condition_is_false
condition_a ? a_is_true : (condition_b ? a_is_false_while_b_is_true : both_a_and_b_are_false)
slave.assignment === Job.MILKED ? 5000 : (slave.physicalAge > 24 ? 1000 : 500)