hardace

Impatiently waiting for the next update
Donor
Oct 8, 2017
102
144
The problem is the game will gravitate toward 100 happiness every day. And they cant gain love without interacting with you. This is compound by their opinion toward Friday/Weekends/Monday. (They'll lost more happiness if they hate these)
My mod solves this by giving them happiness boost according to their love, but only up to 130 happiness.
While I see the intent is to move toward 100 happiness daily, I think a line is missing in the code. In actual play, EVERY character's happiness moves toward 0 every day (unless affected by a serum that increases happiness). There are no variables in the code (that I can see) that add happiness if happiness falls below a certain value. Happiness will continue to fall with every character every day, no matter their preferences.
 

hardace

Impatiently waiting for the next update
Donor
Oct 8, 2017
102
144
That's going to be laborious... each 'special' character, like Jennifer has their own opinions and are located in the people directory, and you can find the file you're looking for called by their name_definition.rpy e.g.
~\game\people\Jennifer\jennifer_definition.rpy

You also have the personalities, like Yandere, introvert, reserved, as well as the Pornstar, Foodie, Gamer etc... So it will take you a while.

The max energy for the ladies is located here
~\game\major_game_classes\character_related\Person.rpy

The MC's is located here...
~\game\main_character\MainCharacter.rpy

self.max_energy = 3000
self.energy = self.max_energy


def absolute_max_energy(self):
'''
The energy of the MC will never go above this value
'''
if not hasattr(self, "_absolute_max_energy"):
self._absolute_max_energy = 3000
return self._absolute_max_energy
Or .... just push 'x' to enter the cheat menu and set these values for each character
 
  • Like
Reactions: crazybeaver

Gentoo

Member
Game Developer
Apr 10, 2019
256
512
Or .... just push 'x' to enter the cheat menu and set these values for each character
Using the cheat menu resets the energy to the max setting and what he wants to do is edit the opinions as well, so he does have to modify every newly created person. Even the 'cheat' is tedious when you create 80 women.
 

Deane9850

Active Member
Jan 4, 2018
609
626
Even before running into this problem I hated the idea of a separate log for women... The old one was cluttered, but this does not seem like a good solution.

Anyway, seems the logs stopped disappearing, can anyone tell how to fix this?
Save and restart lol
 

Deane9850

Active Member
Jan 4, 2018
609
626
I got an idea for a serum trait, maybe someone could help how to implement it.

Basically something that would increase love by 1 every time you make her cum during the serum effect. Maybe it could be an MC serum trait?
This was available as a mod before, but the mod became outdated and no one want to maintain it
 

Deane9850

Active Member
Jan 4, 2018
609
626
While I see the intent is to move toward 100 happiness daily, I think a line is missing in the code. In actual play, EVERY character's happiness moves toward 0 every day (unless affected by a serum that increases happiness). There are no variables in the code (that I can see) that add happiness if happiness falls below a certain value. Happiness will continue to fall with every character every day, no matter their preferences.
It gravitates toward 100... so girls under 100 will gain some happiness ... but the threshold for happy face graphic is 120, so without MC interaction, they will stuck in gloomhaven. No, not that gloomhaven game.

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

MaxTheDark

Member
Apr 11, 2021
378
391
Are you able to scroll it up and down?
No, that's the problem. It used to be that all the messages were being added to the little log in the bottom right. The latest version of the game made it so the player's logs are still there, but the women's logs appear in the top right corner, then slowly fade away. The ones in my game did not, in fact, fade away, and now they stay there, they can't be scrolled, and the new ones are added outside the screen area, meaning I can't see what is going on.

Save and restart lol
I saved and reloaded, and that had no effect, then I started the game again and they all vanished. Smooth brain moment, thanks!

(I still don't like the separation but that a different story :p )
 

SMC85

Newbie
Apr 15, 2024
70
35
Is there a way to change the pubic hair style for specific women?
It's under special actions: ask her to trim her pubes. Not sure if there is an obedience or love requirement, or if it's mod content. And there's of course the cheat function.
 
Last edited:

jackeye56

New Member
Aug 14, 2021
2
0
It's under special actions: ask her to trim her pubes. Not sure if there is an obedience or love requirement, or if it's mod content. And there's of course the cheat function.
Thanks for the quick reply! I ended up just using the cheat menu.
 

mmmonsterkill

Well-Known Member
Aug 30, 2016
1,607
1,810
The max energy for the ladies is located here
~\game\major_game_classes\character_related\Person.rpy

The MC's is located here...
~\game\main_character\MainCharacter.rpy

self.max_energy = 3000
self.energy = self.max_energy


def absolute_max_energy(self):
'''
The energy of the MC will never go above this value
'''
if not hasattr(self, "_absolute_max_energy"):
self._absolute_max_energy = 3000
return self._absolute_max_energy
how do i open these in a way thats editable?
when i open with notepad the text just shows up as a bunch of "
¿ÿÑø;¯ÌÜÿí—Ë?àO²<e@?¸ ×wðuži±š" type symbols
 

Deane9850

Active Member
Jan 4, 2018
609
626
how do i open these in a way thats editable?
when i open with notepad the text just shows up as a bunch of "
¿ÿÑø;¯ÌÜÿí—Ë?àO²<e@?¸ ×wðuži±š" type symbols
theres a different between .rpy file and .rpyc ... The former is openable with any text editor like notepad.
 

rb813

Well-Known Member
Aug 28, 2018
1,523
1,013
how do i open these in a way thats editable?
when i open with notepad the text just shows up as a bunch of "
¿ÿÑø;¯ÌÜÿí—Ë?àO²<e@?¸ ×wðuži±š" type symbols
I feel like it should be editable in Notepad, but if you want to edit Rpy files on the regular, you'll want a type of program called an IDE, such as Visual Studio Code (that's not necessarily the best one, but it's popular because it's Microsoft).
 

mmmonsterkill

Well-Known Member
Aug 30, 2016
1,607
1,810
I feel like it should be editable in Notepad, but if you want to edit Rpy files on the regular, you'll want a type of program called an IDE, such as Visual Studio Code (that's not necessarily the best one, but it's popular because it's Microsoft).
notepad worked i just apparantly missclicked and opened the rpyc file...twice

i think i need a nap
 
Jun 25, 2017
61
79
Thanks for the offer. :)
I compiled it again a few minutes ago, with and without the mods (PC/Linux);

A clean Dev build without any mods (1.8 gigs).
Mega


The Dev build with all the working mods; VT and CT mod, Kadens, Kinas, moresomes, Zenpak, and the RealPornMod (4.1 gigs).
Mega
Sorry to bother you! Would you happen to have the time (and willingness) to update this mod package for the latest version?
Also, it looks like the link no longer works. :(
 

ibnarabi

Member
May 21, 2021
183
832

osmcuser132

Well-Known Member
Modder
Aug 8, 2017
1,077
3,857
I posted a new version a few days ago. If my link doesn't work I deleted it and uploaded a new version...;
https://f95zone.to/threads/lab-rats-2-reformulate-v2025-04.32881/post-16858897
I don't know if it is due to any of the mods or because of the new event system that is still under development but I can't seem to trigger any of the Camilla events beside the first meeting setting the goals.
No dancing or BJ/sex in the toilet at the bar, no helping her clothes/lingerie shopping in the mall, ...

Anyone else seen this issue?
 
4.60 star(s) 76 Votes