I have successfully changed the slots and side effects chance for serums.That gamemod kept crashing for me each time I changed something in the code (like disableing the glasses), I had assumed they used some code checkers... also if you attempt to increase skill levels to 99 it crashes and if you raise them to 9 the game ignores those changes
How did you try to disable the glasses. It works for me for random characters by removing this code from the file "helper_functions/random_generation_functions.rpy"
Python:
if renpy.random.randint(0,100) < age:
#They need/want glasses.
the_glasses = None
if renpy.random.randint(0,100) < 50:
the_glasses = modern_glasses.get_copy()
else:
the_glasses = big_glasses.get_copy()
the_glasses.colour = Person.get_random_glasses_frame_colour()
base_outfit.add_accessory(the_glasses)
Remove lines containing "the_glasses" and in the file"world_setup_characters.rpy" all lines containing "glasses"
I was able to set skills to 99 by changing these in "major_game_classes/character_related/MainCharacter.rpy"
Python:
self.charisma = 99
self.int = 99
self.focus = 99
self.hr_skill = 99
self.market_skill = 99
self.research_skill = 99
self.production_skill = 99
self.supply_skill = 99
self.sex_skills["Foreplay"] = 99
self.sex_skills["Oral"] = 99
self.sex_skills["Vaginal"] = 99
self.sex_skills["Anal"] = 99
self.max_stats = 99
self.max_work_skills = 99
self.max_sex_skills = 99
Last edited: