Mar 9, 2023
143
42
Open the console (press F12) and check the value of V.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 lower V.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.
Ah, I see. Thank you.
 
  • Like
Reactions: scrumbles
Mar 9, 2023
143
42
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...
 

scrumbles

Well-Known Member
Jan 12, 2019
1,157
1,302
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...
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.

Growth stimulants are coded in the file src\endWeek\saDrugs.js, after the line that says case Drug.GROWTHSTIM:
There is a constant, maxGrowthAge, but I don't know if you can increase it (and recompile the game) without introducing any bugs.
 
Mar 9, 2023
143
42
Open the console (press F12) and check the value of V.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 lower V.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.
As an addendum to this, it seems your PC must be visibly pregnant to get the -10 or -5 points each week. (V.PC.bellyPreg >= 1500 to be precise.)
 
  • Like
Reactions: scrumbles

scrumbles

Well-Known Member
Jan 12, 2019
1,157
1,302
(posting here because I've never seen it mentioned before)

Do you have several growth hormone rules? Say, one for girls, one for adult women, and one for cows?
They can be combined into one, if you enable: "Options → Game Options → Experimental → Rules Assistant target growth expressions"

Now you can include your slave's stats into the expression, instead of targeting a fixed number. For instance:
Code:
(slave.physicalAge > 24) ? 1000 : 500
ternary_if.png

This expression is a conditional (ternary) operator. It returns 1000 if your slave has the body of a person who's 25yo or older, 500 otherwise. As usual, the RA will administer hormones to your slave until the goal is achieved - except that the latter depends on the slave.
The general syntax is:
Code:
condition ? value_if_condition_is_true :value_if_condition_is_false
Conditional operators can be nested, like this:
Code:
condition_a ? a_is_true : (condition_b ? a_is_false_while_b_is_true : both_a_and_b_are_false)
The following expression sets the goal to 5000 if the slave is in the Diary, otherwise it's 1000 or 500 depending on her physical age.
Code:
slave.assignment === Job.MILKED ? 5000 : (slave.physicalAge > 24 ? 1000 : 500)
More about the RA in the Encyclopedia: "Table of Contents → Being in Charge → RA Condition Editor"
 
Mar 9, 2023
143
42
FINALLY got the Societal Elite happy enough to lessen restrictions on the breeder exam and get some slaves set as breeders.
...How do I get them impregnated by the Elite? (My PC is female.)

Okay, seems you have to set in Universal Rules to have fertile slaves impregnated by citizens. The Breeders will be impregnated by the Societal Elite.
 
Last edited:

hehehehehe

Newbie
Feb 21, 2018
59
50
Guys, this is a long shot but I like the previous toga dresses in the renders, is there anything I can do to add it in addition the current toga? oh and also my machine got really lag with the experimental animation features when I got 25+ slaves, which is a really shame because I really like the feature, is there anything I can do?
 

savagesix

Member
Jan 30, 2019
169
165
Is there any point to buying animals for the Farmyard if you don't intend on putting on "shows?"
that is literally the point of the animals. Even in real life animals aren't really used in farming anymore, and this is set in whatever, 20X6.
I suppose you could buy the animals if you only want "shows" for yourself, but if you don't intend them to boink girls, the animals are just a resource drain.
 

scrumbles

Well-Known Member
Jan 12, 2019
1,157
1,302
Speaking of security drones, I wait until week 13. Depending on a few conditions, the week before you may trigger an interesting event (save, you may not like the outcome).
You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: DarthSion98

CATCH PHRASE

Newbie
Aug 21, 2017
35
21
I'm surprised by the difficulty spike with the preg and security mod enabled-- seems like starting young just capsizes your whole playthrough.
 
4.40 star(s) 23 Votes