BolHeX

Active Member
Nov 30, 2019
512
816
If a girl appears in the applications screen with some randomly generated traits, and you postpone her, will she have the same traits when she reapplies? or do the random ones regenerate when that happens?
Edit: Tested it, and it looks like they regenerate. Kept skipping days to get back to Monday, and had both rich and broke Dillon Harper at different times. Broke one also had the famous trait that the rich one didn't.
That is interesting behaviour, I can't remember the code exactly but I guess they are regenerated.

Thanks for the hint.
I had already seen this parameter but didn't know if it was the only one used.
It works perfectly with limiting you and randomizing girls for classes. It only gets ignored if you try to start a class and there aren't enough girls.

In class class_exam_manager_ren method def generate_girls_in_class:
Code:
        # If fewer than 3 students, ignore class limits
        girls_and_schedule_count = self._get_girls_and_schedule_count()
        girls_with_free_schedules = [girl.id for girl in academy.girl_manager.get_students() if girls_and_schedule_count.get(girl.id, 0) < weekly_class_limit and girl.weekly_class_count < weekly_class_limit]
        ignore_scheduling = len(girls_with_free_schedules) < 3

        # If fewer than 3 students, add more random students ignoring used_girls
        student_count = len(academy.girl_manager.get_students())
        while len(player_class_girls) < 3 and len(player_class_girls) < student_count:
            girl = self._get_random_girl_for_class("player", day_of_the_week, ignore_used_girls=True, ignore_scheduling=ignore_scheduling)
            if girl and girl not in player_class_girls:
                player_class_girls.append(girl)
I would change it so that if there aren't enough girls, you either hold a class with less girls, or can't hold it at all. And if no girls left, for sure just don't hold exam. Of course, this could be another setting. I could change it for myself in the code, but that would mean, with each update, I have to remake the change. With this change, and not being able to train girls at home, the game already feels a lot better and you aren't that overpowered. (I put the limit at 2 for testing purposes)

This is just an idea, if you think it sounds good:
I would split the girls into 2 categories: juniors and seniors. Juniors would be under a certain threshold and seniors above that threshold. Each one would have a separate exam limit. For example, juniors 2, seniors 1. This way, even if the corruption increases, you can't just accelerate into madness, there is still a balance. The threshold could be time spent in academy, corruption, intellect, grades, naturism, combination of multiple, whatever feels best.
If you think this feels like too much work but there is a way I could make a mod out of this, I would be happy to, just not sure how to go about it to transform these changes into a mod.
I want to say the class scheduling was why I decided to disable this, like it was awkward to not be able to assign girls or girls that you assigned not showing up. Something to that effect.

I am not opposed to implementing it as a "difficulty" option but it is far down on my priority list. If you end up coding it in yourself(modifying base files) I would be happy to implement it as a feature.

That said I am hoping to get a 0.4 beta(supporters only) out today after work so it might be best to wait on that.
 

ihl86

Member
Dec 8, 2019
430
1,350
That is interesting behaviour, I can't remember the code exactly but I guess they are regenerated.


I want to say the class scheduling was why I decided to disable this, like it was awkward to not be able to assign girls or girls that you assigned not showing up. Something to that effect.

I am not opposed to implementing it as a "difficulty" option but it is far down on my priority list. If you end up coding it in yourself(modifying base files) I would be happy to implement it as a feature.

That said I am hoping to get a 0.4 beta(supporters only) out today after work so it might be best to wait on that.
Sounds good, I'll wait for the update to be finished and start working on the change afterwards.
 

wobercenutrio

New Member
May 18, 2020
14
34
I improved my Ariella Ferrera (mother) mod and made a new one of Jennie Rose (as Lulu Chu's mother). The mods include custom traits, events and shared photoshoots / videoshoots. english is not my mother language, so sorry in advance for weird sentences and/or spelling mistakes, feel free to notify me about any errors. I tested the mods and tried to correct any mistakes before posting it tho. I am still getting a weird error message about missing thumbnails. I didn't finch any signs of that while testing the mod, so I am not sure how to fix it.

 
Last edited:

Tort

Newbie
Feb 25, 2018
89
40
I don't know if I'm being dumb or just RNG unlucky. So far the only girls that have been showing up on the ones in the main girls folder... but some of the mods put the the extra girls in the mods folder (For example Eva Elfie), so far none of the girls in the mod folder have been showing up. I don't know if I should just move them to the main folder, if there is some setting I need to set in-game for them to show up or if I've just been unlucky and the RNG hasn't selected them yet...
 

megaera

Member
Nov 12, 2016
455
492
I don't know if I'm being dumb or just RNG unlucky. So far the only girls that have been showing up on the ones in the main girls folder... but some of the mods put the the extra girls in the mods folder (For example Eva Elfie), so far none of the girls in the mod folder have been showing up. I don't know if I should just move them to the main folder, if there is some setting I need to set in-game for them to show up or if I've just been unlucky and the RNG hasn't selected them yet...

Make sure the girl's folder (the one with the name) is in game\_mods\girls .Most mods you just need to unzip inthe main folder, but some of the you needto put directly in game\_mods\girls
 
Aug 16, 2020
363
287
Make sure the girl's folder (the one with the name) is in game\_mods\girls .Most mods you just need to unzip inthe main folder, but some of the you needto put directly in game\_mods\girls
Same if you want to add vids for the ones in the main folder. Have to make a new folder in the mods folder with their name on it
 

Tort

Newbie
Feb 25, 2018
89
40
Make sure the girl's folder (the one with the name) is in game\_mods\girls .Most mods you just need to unzip inthe main folder, but some of the you needto put directly in game\_mods\girls
Yeah, that's where they are, so probably just unlucky RNG on the girls being recruited
 

wirox

Member
Sep 18, 2017
115
349
Nancy Lace upgraded!

1 face 80.jpg

130+ vids:

2 vids 80.jpg

She has 'lesbian' video set. When she is assigned as teacher's assistant, game will show her actions toward any girl:

3 lesbian 80.jpg

Her personal events are lesbian orgies:

4 events.jpg







Enjoy!
 
  • Like
Reactions: WarblGarbl
4.40 star(s) 31 Votes