Ennoch

Conversation Conqueror
Donor
Respected User
Oct 10, 2017
7,682
22,255
Embedded NTR
Sister and Mom will have nightly visitors and have sex.
MC Non Consen
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 content
 
  • Like
Reactions: LickeyDs

MaxTheDark

Member
Apr 11, 2021
373
385
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?
 

a1fox3

Loving Family Member's
Donor
Respected User
Aug 8, 2017
24,545
17,032
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?
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.
 

MaxTheDark

Member
Apr 11, 2021
373
385
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.
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.
 

SMC85

Newbie
Apr 15, 2024
63
34
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?
 

Gentoo

Member
Game Developer
Apr 10, 2019
249
503
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
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
 

hardace

Impatiently waiting for the next update
Donor
Oct 8, 2017
101
143
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
101
143
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
 
4.60 star(s) 73 Votes