DragonFire

Active Member
Jul 30, 2017
821
698
318
This has been bugged for about 3 weeks now, since one of the patches. The dress code is never followed.
Mostly not followed.. I fail to see the absolute bad thing about this, because removing the girls clothes can lead to vids to unlock for it and during Saturday meeting, the moms can complain about it and MC can earn Greed point for it, something he has no other option for at this point. Furthermore, the most obvious bonus is the broken rules point to cash in on through various game play options, one being punishment at homevisits to the girls.
 

kaloed

New Member
Dec 1, 2018
11
0
134
This has been bugged for about 3 weeks now, since one of the patches. The dress code is never followed.
That could be the cause. I get them nude around town when either of those stats are real high. Even working at the cafe nude/topless.
I removed part of the clothing selection conditions in the sort_clothing_selection function, specifically the elif clothing_selection_sort_by == "lewdness" and elif clothing_selection_sort_by == "lewdness_reversed" branches. It seems to have helped, but they still don’t dress according to the defined rules. At least now they actually put clothes on!

"...\game\scripts\locations\screen_clothing_selection.rpy".
1763739684952.png
 

vonbek

Newbie
Apr 23, 2020
65
22
27
since the game seems quite robust to minor edits, is there a way to add the custom traits that some packs have like Subservient etc. to the general game by adding the trait code to a file anywhere?

bonus points if there's a way to do it specificially for girls/mothers in the cases of things that wouldn't make sense as a random trait for either type
 

ElCativo1988

Newbie
Mar 13, 2018
75
19
114
Mostly not followed.. I fail to see the absolute bad thing about this, because removing the girls clothes can lead to vids to unlock for it and during Saturday meeting, the moms can complain about it and MC can earn Greed point for it, something he has no other option for at this point. Furthermore, the most obvious bonus is the broken rules point to cash in on through various game play options, one being punishment at homevisits to the girls.
It's simply about the fact that they no longer adhere to any dress code under any circumstances. This wasn't the case before, or only when discipline was low. You get plenty of bonus points this way; you don't need an endless source like you do now. With all these mechanics, it's true that they could definitely be more difficult, not easier.
 

GamerDaddy

Engaged Member
Feb 6, 2023
2,770
1,701
296
It's simply about the fact that they no longer adhere to any dress code under any circumstances. This wasn't the case before, or only when discipline was low. You get plenty of bonus points this way; you don't need an endless source like you do now. With all these mechanics, it's true that they could definitely be more difficult, not easier.
they do follow the rules unless the nat and corr are high with low discipline
 

Jigglypuff Dragonslayer

Active Member
Aug 16, 2020
506
373
207
since the game seems quite robust to minor edits, is there a way to add the custom traits that some packs have like Subservient etc. to the general game by adding the trait code to a file anywhere?

bonus points if there's a way to do it specificially for girls/mothers in the cases of things that wouldn't make sense as a random trait for either type
You mean adding a specific trait to someone's config file?
 

ElCativo1988

Newbie
Mar 13, 2018
75
19
114
they do follow the rules unless the nat and corr are high with low discipline
That was the case before a patch a few weeks ago. Everything worked normally then, but since then, none of my students ever follow the rules, regardless of their stats or what I ask. Several people reported the same issue back then. And I think it's still not fixed?

I already wrote about this on October 26th.
 

WarblGarbl

Active Member
Oct 10, 2017
539
644
258
That was the case before a patch a few weeks ago. Everything worked normally then, but since then, none of my students ever follow the rules, regardless of their stats or what I ask. Several people reported the same issue back then. And I think it's still not fixed?

I already wrote about this on October 26th.
I believe Hex is working on a rework of how clothing "works", at least for uniforms, so the fix will be that.

since the game seems quite robust to minor edits, is there a way to add the custom traits that some packs have like Subservient etc. to the general game by adding the trait code to a file anywhere?

bonus points if there's a way to do it specificially for girls/mothers in the cases of things that wouldn't make sense as a random trait for either type
You can dig into the girl's config file to find the custom trait and add it to the trait database.

This is what Jade Kimiko's trait looks like in her file, for example:
{
"name": "Bullied",
"color": "#FF0000",
"stat_growth_multipliers": {"affection": 0.25, "naturism": -0.25, "fear": 0.25},
"base_stat_modifiers": {"people_skill": -0.20, "shoot_acceptance": -0.15},
"description": "She has been bullied due to her glasses during her early years. She is more fearful and less willing to strip, but attaches to people who show love very quickly."
}

You'd take it and reformat it to look like this:

init -1 python:
database_traits["bullied"] = Trait(
name="bullied",
color="#FF0000",
display_name="Bullied",
physical_appearance_trait=False,
rarity=1,
stat_growth_multipliers={"affection": 0.25, "naturism": -0.25, "fear": 0.25},
base_stat_modifiers={"people_skill": -0.20, "shoot_acceptance": -0.15},
description= "She has been bullied due to her glasses during her early years. She is more fearful and less willing to strip, but attaches to people who show love very quickly.",
)

It'd be a bit of grunt work but it's doable. Rarity is the chance of a trait appearing, so make sure it's above 0. 5 would be the most common.
 

GamerDaddy

Engaged Member
Feb 6, 2023
2,770
1,701
296
That was the case before a patch a few weeks ago. Everything worked normally then, but since then, none of my students ever follow the rules, regardless of their stats or what I ask. Several people reported the same issue back then. And I think it's still not fixed?

I already wrote about this on October 26th.
funny thing is dont have this issue (never did) i even did a fresh start
 

ElCativo1988

Newbie
Mar 13, 2018
75
19
114
funny thing is dont have this issue (never did) i even did a fresh start

I've already restarted three times. Something's definitely wrong with my game now. I don't know if it's a mod issue; I thought the update had messed it up. Reinstalling everything... hmm... the downloads alone would take hours... ^^


Are you really playing with the latest version? I'm still having the same problem, even with one save file. Outfit rules are completely irrelevant for the students.
 
Last edited:

GamerDaddy

Engaged Member
Feb 6, 2023
2,770
1,701
296
I've already restarted three times. Something's definitely wrong with my game now. I don't know if it's a mod issue; I thought the update had messed it up. Reinstalling everything... hmm... the downloads alone would take hours... ^^


Are you really playing with the latest version? I'm still having the same problem, even with one save file. Outfit rules are completely irrelevant for the students.
yes my game is current (and it's HEAVYLY modded)
 

vonbek

Newbie
Apr 23, 2020
65
22
27
I believe Hex is working on a rework of how clothing "works", at least for uniforms, so the fix will be that.



You can dig into the girl's config file to find the custom trait and add it to the trait database.

This is what Jade Kimiko's trait looks like in her file, for example:
{
"name": "Bullied",
"color": "#FF0000",
"stat_growth_multipliers": {"affection": 0.25, "naturism": -0.25, "fear": 0.25},
"base_stat_modifiers": {"people_skill": -0.20, "shoot_acceptance": -0.15},
"description": "She has been bullied due to her glasses during her early years. She is more fearful and less willing to strip, but attaches to people who show love very quickly."
}

You'd take it and reformat it to look like this:

init -1 python:
database_traits["bullied"] = Trait(
name="bullied",
color="#FF0000",
display_name="Bullied",
physical_appearance_trait=False,
rarity=1,
stat_growth_multipliers={"affection": 0.25, "naturism": -0.25, "fear": 0.25},
base_stat_modifiers={"people_skill": -0.20, "shoot_acceptance": -0.15},
description= "She has been bullied due to her glasses during her early years. She is more fearful and less willing to strip, but attaches to people who show love very quickly.",
)

It'd be a bit of grunt work but it's doable. Rarity is the chance of a trait appearing, so make sure it's above 0. 5 would be the most common.
Cheers Warbl, I'll look at the the files tomorrow ( mainly the Trait DB one ) and see how comfy I am with it. Was more that there's a couple of the custom ones that would be nice as randoms as opposed to could also be good to put on specific people.
 

megaera

Active Member
Nov 12, 2016
555
673
306
Avatar2 - Copy.jpg

NEW! Janice Griffith
Main/Girl: 183 vids (74 unique tags), 119 fullbody, 79 body_images, photoshoot: 4 (2 shared), videoshoots: 8 (6 shared)
This is version 0.9, so their might be some kinks.
Add On in the work: custom clothing, massage parlor integration (as soon as I figure out what action it uses), and more... ?
Available at a Mod Manager near you.
 

megaera

Active Member
Nov 12, 2016
555
673
306
I'm trying to unlock the pizza achievements. What attributes are required for a girl cook and burn the meal?
There's a way to auto set the meals to autoburn when you ask her to cook. I don't remember if it's an item that give you that possibility though
 

WarblGarbl

Active Member
Oct 10, 2017
539
644
258
I'm trying to unlock the pizza achievements. What attributes are required for a girl cook and burn the meal?
Low discipline because I couldn't think of a better tie to cooking skill. There's an autoburner "upgrade" in the shop part that lets you always burn food in case you can't get it to burn otherwise.
I also might have just forgot to implement the achievement so yell at me if you still don't get it after doing that
 
  • Like
Reactions: megaera

EEMNHMQI

Well-Known Member
Mar 5, 2023
1,134
1,139
265
Can we get input code please
The codes are in screen_code_input.rpy

Code:
    "imadev": "enable_debug_mode",
    "wecanrebuildit": "unlock_upgrades",
    "workwork": "unlock_faculty_upgrades",
    "quickdrycement": "finish_faculty_upgrades",
    "voodoolady": "reduce_pta_vote_difficulty",
    "smoothtalker": "increase_sponsor_relationship_gain",
    "idemandrespect": "max_player_reputation",
    "backtoschool": "max_academy_prestige",
 
4.30 star(s) 51 Votes