Deane9850
Active Member
- Jan 4, 2018
- 575
- 594
Should mentioned that its highly unstable currently for long savesThere are three posts with working links to the game. Don't be lazy.
Should mentioned that its highly unstable currently for long savesThere are three posts with working links to the game. Don't be lazy.
There is "Big Ambition" on Steam with some similar executions of tycoon/management mechanics as Lap Rat 2. You are a specific person within the world. You hire people, that have their own conditions and needs, but there are no stories or quests. The presentation is an RPG Style top down and 3D. You can manage your stores and staff by going there or by "remote work". You yourself can work most tasks when a worker drops out.does anyone know of any nonporn games like the business aspect of this? if it was built out more it would be a pretty good game on its own
1. is crisis, so no disable.Question on 2 of the random events that occur at night.
1. Is there an option to disable the calls you get from random employees that need to cum? I'm very tired of this random nightly event occurring near 75% of the time and i'd love to disable it.
2. What are the requirements for Jennifer to ask you to help pick out clothes for to wear to work the next day? I used to get this one once per week back in the 08.2024 version, but don't believe i've seen it on any dev version since, nor on the current AOI. So i'm guessing there's either a specific requirement i'm not fulfilling, or i've just been extremely unlucky to not see this for half a year.
Do you have to do anything special for the real porn mod?Latest build with the Nora branch additions integrated, and all the working Mods besides the AI image gen (VT & CT, RealPorn, moresomes, Zenpak, Kaden and Kina mods) PC/Linux; This build will not work with any existing saves. That means your saves won't load without errors. Even save games from the build I posted last week.
You will need to start a new game.
Just to be clear, your saves will not work, don't download this and complain about your saves not working, they won't
Mega
You must be registered to see the links
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?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
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% masteriedI 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.
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.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
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.1. is crisis, so no disable.
2. she must have a job, have <12 business suit, she outgrow her suit sluttiness score
I think for this the MOD code needs to be expanded. Currently the full prompt is: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.
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
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 446Also 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.
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
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
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.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.
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.I think for this the MOD code needs to be expanded. Currently the full prompt is:
As you can see, nothing is added regarding cum on their bodiesPython: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
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
change it toPython: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
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
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 successI 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.
I guess 85 people forgot to unsubscribe. Not sure what it has to do with the mod, though.Just looked on Vren's Patreon page
Vren
creating Erotic Video Games
- 85 paid members
- 642 posts
- AU$239.5/month