ibnarabi
Member
- May 21, 2021
- 167
- 744
That file is most definitely in the scripts.rpa file, with the proper path, in the Rar I uploaded.
I don't know what they did.
That file is most definitely in the scripts.rpa file, with the proper path, in the Rar I uploaded.
Sister and Mom will have nightly visitors and have sex.Embedded NTR
Feature: MC Non-Consent Preference Three position toggle. Enabled, Disabled, and Roleplay When enabled, MC willing to be submissive to dom girls and LIKES IT When disabled, MC will always take over sexual situations, even with dom girls On Roleplay, MC will have the choice to be dom or sub THIS IS NOT A RAPE TOGGLE. THERE IS NO FEAR, CRYING, TRAUMATIZING RAPE IN THIS GAME So far only added to Nora contentMC Non Consen
You mean that is large and if so just click in the lower right where the box is and it should make it small again.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?
No, the fact that the notifications about mom's stats have ran past the screen and I can't see new ones. It's about the top-right corner box.You mean that is large and if so just click in the lower right where the box is and it should make it small again.
Are you able to scroll it up and down?No, the fact that the notifications about mom's stats have ran past the screen and I can't see new ones. It's about the top-right corner box.
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.Kind ladies and gentlemen, I kindly ask for help in creating a batch file to set attributes for each person in the game. I am missing the names of the "opinions" and the code to modify them. Perhaps someone could assist?
just for begining:
the_person.max_energy = 300
the_person.energy = 300
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.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.
Or .... just push 'x' to enter the cheat menu and set these values for each characterThat'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
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.Or .... just push 'x' to enter the cheat menu and set these values for each character
Followed up on Discord, it seems this may be a case sensitive Linux issue...
Save and restart lolEven 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?
This was available as a mod before, but the mod became outdated and no one want to maintain itI 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?
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.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.