Nov 22, 2017
124
104
I really don't know, that's why im asking here. I used the basic mods listed here (not all), used their guide to install. Installed the Paris, Amsterdam and Louisville maps. Playing normally, house, jobs, not changing stats manually, yet i still can't reload saved games without that bugg. I had the same problem by just playing the base game no mods at all. Either my download somehow got f*cked up or it's an unfortunate bug in the game, i'm sure i'm not the only one tho. I've had it for the past month, first time i actually asked something here. Thanks for the reply tho
Write to the developer of the game - Vinfamy about this
 

Grim

Active Member
Aug 17, 2016
913
623
Anyone else having the issue where you load your saved games, and every contact you've met becomes invisible? Just an endless list of empty contacts. It gets annoyin when you put 2/3h of work into characters and losing your progress after saving and closing the game every single time. Especially when you try to keep the game as realistic as possible. It's a great game but that issue holds me back from playing more.
Your game might not have the correct permissions to write all of the necessary save data to the disk. You could try running it as admin, moving the game to another location, or seeing if anything like anti-virus is blocking it
 
Apr 28, 2020
227
203
Does anyone know if any of the mods available would cause all the characters to spawn on top of each other in the middle of the room when the room reloads after an event, or using the bathroom? Or is this just a general bug in the base game?
seems to be base game. had no mods installed and had this happen to me a few times.
 
  • Like
Reactions: Grim and srg91

Grim

Active Member
Aug 17, 2016
913
623
Anyone know if there's a cutoff age where characters can no longer get pregnant? I haven't seen any references to age with relation to fertility in any of the modifiable game code, but I'm also not ruling out a hardcoded value that we're unable to see.

Edit: Managed to answer my own question. I randomly generated NPCs until I got a woman in her 70s (79 to be exact). Managed to get her pregnant, turned the Pregnancy Term Multiplier down to 0.01, and a few days later she gave birth. Seems like something that needs to be addressed in the future since it's not exactly realistic for women to be getting pregnant after menopause
 
Last edited:
  • Like
Reactions: MattShizzle

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,274
Anyone know if there's a cutoff age where characters can no longer get pregnant? I haven't seen any references to age with relation to fertility in any of the modifiable game code, but I'm also not ruling out a hardcoded value that we're unable to see.

Edit: Managed to answer my own question. I randomly generated NPCs until I got a woman in her 70s (79 to be exact). Managed to get her pregnant, turned the Pregnancy Term Multiplier down to 0.01, and a few days later she gave birth. Seems like something that needs to be addressed in the future since it's not exactly realistic for women to be getting pregnant after menopause

I actually changed the age stat file so that the maximum is 50. Got sick of always getting so many elderly.
 

Grim

Active Member
Aug 17, 2016
913
623
I actually changed the age stat file so that the maximum is 50. Got sick of always getting so many elderly.
Yea I've modified several scenes to generate NPCs in specific age groups rather than letting it be completely random, but modifying the global maximum age is a good idea as well
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,274
You have to do it every time though. Unfortunately, even Update Only resets a lot of things. I keep a backup of several folders for the things I want to not change back.
 
  • Like
Reactions: srg91

Grim

Active Member
Aug 17, 2016
913
623
You have to do it every time though. Unfortunately, even Update Only resets a lot of things. I keep a backup of several folders for the things I want to not change back.
Yea I've been thinking about that. Currently I'm just keeping a text file with a list of changes I've made and the line numbers, but the next time there's an update I'll probably have to figure out some way of only updating files if they're newer than mine so that my changes aren't overwritten each time
 

MattShizzle

Well-Known Member
Oct 31, 2019
1,354
1,274
I just have the folders (like bedrooms) saved and copy paste into the folder those folders are in. Changing the age stat file is quick and easy enough though.
 
  • Like
Reactions: srg91

Lust Demon

Member
Apr 22, 2018
100
85
Am I the only one that gets an infinite loop with the "Porn Empire" mod when "checking business performance"? I've hit skip and let it go for over an hour more than once. My rig may be a bit "outdated" but it's still more than powerful enough to handle this game without breaking a sweat. Search didn't turn up anything useful.
 

Edwarf

Member
Jun 8, 2017
416
474
Resseting to your home when someone sends you a nude pic it's quite annoying (doesn't happen with sent videos), any chance to get it fixed?

To modders: I'd really apreciate knowing if a mod version works fine with any or the latest release of the game.

Thanks in advance.
 
  • Like
Reactions: tanocapo and srg91

bigmonster

Newbie
Nov 5, 2017
82
157
Am I the only one that gets an infinite loop with the "Porn Empire" mod when "checking business performance"? I've hit skip and let it go for over an hour more than once. My rig may be a bit "outdated" but it's still more than powerful enough to handle this game without breaking a sweat. Search didn't turn up anything useful.
I know with checking performance it brings you into your office and count how much money you've made based on the videos you have uploaded. Most mods usually get outdated since the game gets frequent updates like every 2 weeks. The mod makers tries to make it so that it will work for most and upcoming versions however sometimes certain game updates can break mods or make them act funky. With porn empire mod and sometimes it forgets that I have an office so I have to keep buying it again. Rarely but sometimes it forgets that I even start a porn company so I have to start over again and buy everything again. Just beware when using mods that some aren't updated frequently or up to the latest versions.
 
  • Like
Reactions: Lust Demon

Grim

Active Member
Aug 17, 2016
913
623
I believe I have determined why you no longer see colleagues at the office anymore: They're just not going. There's a problem with the work_office.lpai file (and presumably several other AI files) in which a condition for them actually going to work is failing. I have tested the various conditions and functions used in the script, and the only one that's failing is the condition on line 7 based on DayOfWeek:

DayOfWeek >= 2 && DayOfWeek <= 6

I've made an action/scene to test the various aspects of the AI script, and it also prints out the value of DayOfWeek, and it appears that DayOfWeek is set to -1, regardless of what day it is, so the condition will never be true, and thus people working at offices and a few other places will never go to work. Assuming you have an office job in your game and have met some colleagues there, it's easy enough to test this by just removing that condition from work_office.lpai, so that line 7 changes from:

If WHEN > 8 && WHEN < 19 && DayOfWeek >= 2 && DayOfWeek <= 6

to:

If WHEN > 8 && WHEN < 19

Doing so will then make your boss/colleagues start appearing at work again. The obvious downside of this is that people working the jobs relevant to that script will then go to work every day instead of just 5 days a week.

DayOfWeek is used in several AI scripts, so it seems like there's a lot more that's broken beyond just people not going to work at the office.

I've also attached the test mod I used for reference
 
Last edited:

Lust Demon

Member
Apr 22, 2018
100
85
I know with checking performance it brings you into your office and count how much money you've made based on the videos you have uploaded. Most mods usually get outdated since the game gets frequent updates like every 2 weeks. The mod makers tries to make it so that it will work for most and upcoming versions however sometimes certain game updates can break mods or make them act funky. With porn empire mod and sometimes it forgets that I have an office so I have to keep buying it again. Rarely but sometimes it forgets that I even start a porn company so I have to start over again and buy everything again. Just beware when using mods that some aren't updated frequently or up to the latest versions.
Thanks. That makes sense. Updating too frequently means modders are scrambling to catch up. For S&G's I left it running last night, went to bed and then work, and checked it again. It finally completed and I gained like 1.5 million pounds though it ate 2 days. LOL

I also recreated my issue with copying over someone's appearance and stats to my char. It seems to be caused by saving while having a companion and exiting the game.
 
3.30 star(s) 117 Votes