BeeGee

Member
Apr 26, 2018
185
212
why does steph keep changing the research direction to high capacity design even though its at 100% mastery, can you go over 100? i havent seen it move above that without cheating
I have never seen Steph change research on her own, all she does is whine when I haven't selected something to research for a while. Is that part of a mod?
I assume you can always continue researching traits just to give her something to do. Not that it would accomplish anything at that point, but you are going to run out of new research eventually, so it makes sense.
 

mmmonsterkill

Well-Known Member
Aug 30, 2016
1,610
1,812
I have never seen Steph change research on her own, all she does is whine when I haven't selected something to research for a while. Is that part of a mod?
I assume you can always continue researching traits just to give her something to do. Not that it would accomplish anything at that point, but you are going to run out of new research eventually, so it makes sense.
yeah im playing the modpack thats the second links listed in op, it has the option to let the lead researcher assign topics, i figured it would be a nice way to not accidentally have days without research happening cuz i forgot to go there. but i had to turn off that option cuz she is madly inlove with researching a topic thats already 100% masteried
 
  • Haha
Reactions: BeeGee

BeeGee

Member
Apr 26, 2018
185
212
yeah im playing the modpack thats the second links listed in op, it has the option to let the lead researcher assign topics, i figured it would be a nice way to not accidentally have days without research happening cuz i forgot to go there. but i had to turn off that option cuz she is madly inlove with researching a topic thats already 100% masteried
That's interesting. I can see why that particular research would be weighted higher than others on the list, but sounds like the modder still has some kinks to work out. :unsure:
 

Gwynn

Newbie
Oct 20, 2016
42
39
1. is crisis, so no disable.
2. she must have a job, have <12 business suit, she outgrow her suit sluttiness score
Drats. That was my thinking as well as could never find any option to disable that one event. And on the Jennifer topic, i guess i'm not meeting the 3rd requirement you listed, as i usually do the 'modify entire wardrobe' option to have her wear more slutty clothing manually. Thank you for the response.
 

StopWatch

Newbie
Jul 17, 2018
18
28
Regarding the GenAI mod:

Any info on how to add "listeners" so I can have it corelate with pubic styles and cum layers? The model I was testing has these features and while I can use append for "Trimmed body hair" per npc, that wouldn't work for something situational like cum layers.

Also would like to adjust some verbiage like "aged 41" to something like "age 41" or "41 years old" as the term "aged" seems to make most look older then their age even if they are "aged 24". Currently use append to say "looks younger" to compensate.
 

osmcuser132

Well-Known Member
Modder
Aug 8, 2017
1,077
3,860
Regarding the GenAI mod:

Any info on how to add "listeners" so I can have it corelate with pubic styles and cum layers? The model I was testing has these features and while I can use append for "Trimmed body hair" per npc, that wouldn't work for something situational like cum layers.
I think for this the MOD code needs to be expanded. Currently the full prompt is:
Python:
        eye_prompt = self.get_eyecolor_prompt()
        expression_prompt = self.get_expression_prompt()
....

        full_prompt = eye_prompt + ", " + expression_prompt + ", " + skin_prompt + ", " + age_prompt + ", " + details_prompt + ", " + outfit_prompt + ", " + breasts_prompt + ", " + body_type_prompt + ", " + position_prompt + ", " + prompt_style
As you can see, nothing is added regarding cum on their bodies

Also would like to adjust some verbiage like "aged 41" to something like "age 41" or "41 years old" as the term "aged" seems to make most look older then their age even if they are "aged 24". Currently use append to say "looks younger" to compensate.
This one is easy if you are familiar with python. The age prompt is implemented in a function in the SDClient_ren.py file on line 446
Python:
    def get_age_prompt(self):
        age = self.currentPerson.age
        age_prompt = "aged"+ str(age)
        if age > 60:
            age_prompt = "aged "+ str(age) + ", grandmother"
        elif age > 50 and age <= 60:
            age_prompt = "aged "+ str(age) + ", middle age"
        elif age > 30 and age <= 50:
            age_prompt = "aged "+ str(age) + ", young adult"
        elif age > 20 and age <= 30:
            age_prompt = "aged "+ str(age) + ", college age"
        elif age <=20:
            age_prompt = "aged "+ str(age) + ", teen"
        return age_prompt
change it to
Python:
    def get_age_prompt(self):
        age = self.currentPerson.age
        age_prompt = str(age) + " years old, "
        if age > 60:
            age_prompt += "grandmother"
        elif age > 50 and age <= 60:
            age_prompt += "middle age"
        elif age > 30 and age <= 50:
            age_prompt += "young adult"
        elif age > 20 and age <= 30:
            age_prompt += "college age"
        elif age <=20:
            age_prompt += "teen"
        return age_prompt
 
Last edited:

LZ_Starbuck

Member
Modder
Mar 25, 2019
200
423
Hello all so I have a few questions and comments, though I will say I do find this game addictive with all the options available to it.

First does anyone know if the Exhibition fetish is finished. I remember the last version I still couldn't get Ellie to get that fetish in the lab so could not create the nano bots for it.

Second is there a way to push outfits to all the girls in the game at once, sending them individually thru the clothing store to each girl gets tedious, right now the only other way I know of is to go manually into the wardrobe folder and add the outfit to the individual files and then for the random girls they don't get all of them.

Last, what it the trick with hiring girls on the street I had a waitress at the café I was trying to hire but first the choice didn't show up for a few days then when it did I keep getting a comment that they are not suitable to hire...I even bumped her stats up to 10.

BTW added my wardrobe for anyone who wants a lot of ready made variety.
1 - No. I've been working on a couple of the exhbitionism fetish intro events recently, but I don't believe any of them are in game yet.

2 - Something like this is planned down the road via Sakari and the clothing store but it is going to be a while before we get there.

3 - I did a quick check in the code, and it says the person needs atleast 3 to all 3 main stats to be hireable.
 

akselx

Active Member
Mar 29, 2020
784
1,304
Hey, does anyone know if there's a way to set default transparency value for procedurally generated clothing?
 

StopWatch

Newbie
Jul 17, 2018
18
28
I think for this the MOD code needs to be expanded. Currently the full prompt is:
Python:
        eye_prompt = self.get_eyecolor_prompt()
        expression_prompt = self.get_expression_prompt()
....

        full_prompt = eye_prompt + ", " + expression_prompt + ", " + skin_prompt + ", " + age_prompt + ", " + details_prompt + ", " + outfit_prompt + ", " + breasts_prompt + ", " + body_type_prompt + ", " + position_prompt + ", " + prompt_style
As you can see, nothing is added regarding cum on their bodies



This one is easy if you are familiar with python. The age prompt is implemented in a function in the SDClient_ren.py file on line 446
Python:
    def get_age_prompt(self):
        age = self.currentPerson.age
        age_prompt = "aged"+ str(age)
        if age > 60:
            age_prompt = "aged "+ str(age) + ", grandmother"
        elif age > 50 and age <= 60:
            age_prompt = "aged "+ str(age) + ", middle age"
        elif age > 30 and age <= 50:
            age_prompt = "aged "+ str(age) + ", young adult"
        elif age > 20 and age <= 30:
            age_prompt = "aged "+ str(age) + ", college age"
        elif age <=20:
            age_prompt = "aged "+ str(age) + ", teen"
        return age_prompt
change it to
Python:
    def get_age_prompt(self):
        age = self.currentPerson.age
        age_prompt = str(age) + " years old, "
        if age > 60:
            age_prompt += "grandmother"
        elif age > 50 and age <= 60:
            age_prompt += "middle age"
        elif age > 30 and age <= 50:
            age_prompt += "young adult"
        elif age > 20 and age <= 30:
            age_prompt += "college age"
        elif age <=20:
            age_prompt += "teen"
        return age_prompt
Much Appreciated! That age code change is just what I needed. Definitely a good start, though this mod could use a couple more prompts to compete with what the original has brought to the table. For us distinguished gentlemen that is.
 
  • Like
Reactions: DeanNoriko

graybluered1

Newbie
Jul 23, 2017
51
53
I was looking for a little help on how to get the "family" pregnant Sister Mother Aunt and Cousin , I have the breeding fetish for both Mother and sister working on the Aunt and Cousin they are at their own apparntment and im working on the sexual nanobots. But I am hitting them with BC Suppression Fertility Enhancement etc etc But nothing.
 

mmmonsterkill

Well-Known Member
Aug 30, 2016
1,610
1,812
I was looking for a little help on how to get the "family" pregnant Sister Mother Aunt and Cousin , I have the breeding fetish for both Mother and sister working on the Aunt and Cousin they are at their own apparntment and im working on the sexual nanobots. But I am hitting them with BC Suppression Fertility Enhancement etc etc But nothing.
you dont need all that, either convince em to stop taking the pill (can be done many different ways), or use bc suppression and keep cumming in them...vaginal only, anal impregnations have very low chance of success :KEK:
 
  • Haha
Reactions: Lgn332

slick97

Active Member
Dec 2, 2021
734
1,972
I was looking for a little help on how to get the "family" pregnant Sister Mother Aunt and Cousin , I have the breeding fetish for both Mother and sister working on the Aunt and Cousin they are at their own apparntment and im working on the sexual nanobots. But I am hitting them with BC Suppression Fertility Enhancement etc etc But nothing.
you dont need all that, either convince em to stop taking the pill (can be done many different ways), or use bc suppression and keep cumming in them...vaginal only, anal impregnations have very low chance of success :KEK:
The method for determining when a girl becomes pregnant is both simple and complex. More succinctly, the game checks a few things:
  1. Did you cum inside
    • Each instance of cumming inside runs the did_she_become_pregnant function
  2. The effective fertility of the girl each time you cum inside her which is based on the following:
    • Game pregnancy preference (realistic = harder, Predictable = easier)
    • Days from ideal fertility (closer to the "peak day" = higher chance)
    • Ferility_percent - the base fertility score (max age = 78, highest fertility (@ 18) = 20%)
      • Note: Starbuck changed this awhile ago to add another multiplier to normalize values to between 3% - 6%
    • Fertility aura perk for MC (adds to fertility percent)(Small = +0.2; Medimum = +0.3; Large = +0.5; maxes at 25%)
  3. The pregnancy chance which takes into account:
    • Effective_fertility = fertility_percent * ( 2 - (day_difference / 10) )
    • birthcontrol_efficiency = ## - bc_penalty (## depends on pregnancy preference; bc_penalty is determined by serums)
Every time you cum inside a girl - including during the same sexual encounter - the game rolls a number between 0 and 100 twice. The first check passes only if the effective fertility is higher than the random number selected. The second passes only if the birth control efficiency is lower than the random number selected.

tl;dr - You're dealing with low odds even in the best circumstances (see spoiler for some statistics)
You don't have permission to view the spoiler content. Log in or register now.
 

Draakaap23

Dying is always an option
Donor
Jul 5, 2017
1,256
2,834
I was looking for a little help on how to get the "family" pregnant Sister Mother Aunt and Cousin , I have the breeding fetish for both Mother and sister working on the Aunt and Cousin they are at their own apparntment and im working on the sexual nanobots. But I am hitting them with BC Suppression Fertility Enhancement etc etc But nothing.
You can see their fertility rate/change in the persons info screen at the top, just click the '?' on top of the screen when talking with that person to see their stats. now just like RL, the fertility rate fluctuates during a month, so it could be awhile before you hit 'peak fertile' period. Of course you need to get em to stop talking birth control before that.
 
  • Like
Reactions: graybluered1

slick97

Active Member
Dec 2, 2021
734
1,972
Where I can find que rpy file with this info?
Everything can be found inside LR2_Reformulate\game\major_game_classes\character_related\person_ren.py (see spoiler for functions with line references).
You don't have permission to view the spoiler content. Log in or register now.

The fertility aura serum effects can be found in LR2_Reformulate\game\main_character\mc_serums\mc_serum_definitions_ren.py (see spoiler for functions with line references).
You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: lossius

graybluered1

Newbie
Jul 23, 2017
51
53
You can see their fertility rate/change in the persons info screen at the top, just click the '?' on top of the screen when talking with that person to see their stats. now just like RL, the fertility rate fluctuates during a month, so it could be awhile before you hit 'peak fertile' period. Of course you need to get em to stop talking birth control before that.
I might just be dumb but I don't see that information there ?
 
4.60 star(s) 76 Votes