You need to get to serum level 1 unlocked for her to appear.I'm on day 7 and I haven't seen the gym friend or her introduction event, has she been removed from the game?
You need to get to serum level 1 unlocked for her to appear.I'm on day 7 and I haven't seen the gym friend or her introduction event, has she been removed from the game?
Am I seriously the first person who's ever been bothered by this? That's astounding.What you could try doing is joining the discord and, in the #game-requests channel, saying something like "could we get an "all departments" button for work uniform assignments?"
I bet you a nickle that someone could implement it within a day if you asked both a) somewhere that they can see it, and b) like a reasonable person.
I mean, it looks like you added a shitzillion all at once - most of us don't do that. Personally, I barely touch the wardrobe system until I can get them to slut it ALL the way up; at that point there's not really that much point in having an abundance of outfits since they're gonna consist of basically nothing anyway.Am I seriously the first person who's ever been bothered by this? That's astounding.
Talk to Steph about unlocking T2 traitsHow do I unlock College Campus as location?
Prolly!I think I'm like 4 weeks into Marathon speed, that why so few things have triggered?
Good news: those stats are trainable!Because I'm looking for 'Production+Focus' characters, and maybe even 'Supply Procurement+Focus' characters.
Ellie, Kaya (barista/student), instagram gril, student you can tutor, i THINK student's mom, Erica (gym bunny), Nora, Candace (bimbo), uhhh...What is the complete list of NPC's with STAR icon near their names?:
Mom [Jennifer]
Sister [Lilly]
Friend [Stephanie] Researcher+Intelligence
Aunt [Rebecca]
Cousin [Gabrielle]
Childhood Friend [Sarah] Human Resources+Charisma
Police Chief [Christine]
School Friend [Alexia] Marketing+Charisma
Hair Stylist [Ophelia]
Sex Shop Owner [Cara]
Lifestyle Coach [Camila]
saw people mention, Elie/Ela and a few others, but I'm unsure of all their triggers.
I just checked the code and it's literally storing the original value and restoring it afterwards. If you can reliably reproduce the weirdness, please feel free to mention it on the discord in the #bug-reports channel (maybe with a copy of your save and step by step instructions so that whoever decides to investigate is able to try to reproduce on their side).Alright, I'm not sure about the selective amnesia trait. I tried to use it in my serum which doesn't have any negatives except a small decrease of happiness. The trait should bring stats back to where they were before ingesting the serum, but the people usually get way below where they were. From 20 sluttiness to 0, from 102 obedience to 62 etc. Am I doing something wrong?
I didn't fully understand the problem described and I haven't tested the new version yet. But, in previous versions, the serum effects would never store the original value. They would store the increment in the stats. So if the effect was +30 sluttiness, in the end it would do -30 sluttiness. So if you had a character with 90 sluttiness to start with (90+30=120, so 100 because it's capped at that value), by the end of the effect of the serum it would reduce to 70 because (100-30=70).I just checked the code and it's literally storing the original value and restoring it afterwards. If you can reliably reproduce the weirdness, please feel free to mention it on the discord in the #bug-reports channel (maybe with a copy of your save and step by step instructions so that whoever decides to investigate is able to try to reproduce on their side).
I didn't fully understand the problem described and I haven't tested the new version yet. But, in previous versions, the serum effects would never store the original value. They would store the increment in the stats. So if the effect was +30 sluttiness, in the end it would do -30 sluttiness. So if you had a character with 90 sluttiness to start with (90+30=120, so 100 because it's capped at that value), by the end of the effect of the serum it would reduce to 70 because (100-30=70).
That always annoyed me btw, that it works... or at least worked that way.
serum.effects_dict["start_day"] = day
serum.effects_dict["start_turn"] = time_of_day
serum.effects_dict["amnesia_count"] = active_amnesia_traits
serum.effects_dict["love"] = person.love
serum.effects_dict["obedience"] = person._obedience
serum.effects_dict["happiness"] = person.happiness
serum.effects_dict["sluttiness"] = person._sluttiness
serum.effects_dict["pregnant"] = person.is_pregnant
serum.effects_dict["broken_taboos"] = person.broken_taboos.copy()
serum.effects_dict["opinions"] = copy.deepcopy(person.opinions)
serum.effects_dict["sexy_opinions"] = copy.deepcopy(person.sexy_opinions)
serum.effects_dict["sex_record"] = person.sex_record.copy()
person.love = serum.effects_dict["love"]
person._obedience = serum.effects_dict["obedience"]
person.happiness = serum.effects_dict["happiness"]
person._sluttiness = serum.effects_dict["sluttiness"]
person.broken_taboos = serum.effects_dict["broken_taboos"]
person.opinions = serum.effects_dict["opinions"]
person.sexy_opinions = serum.effects_dict["sexy_opinions"]
person.sex_record = serum.effects_dict["sex_record"]
Thank you for replying.You can't use saves across versions as far as I know. The code isn't built incrementally, so if you move to a new version there may be key variables the code expects that your save doesn't have stored, or your save has properties set in a different structure, etc.
use it modanyone know how to get around editing a save
because everytime i try with saveeditoronline i get a message saying " our RenPy version have some save protection, to disable find this file \renpy\savetoken.py and replace if token_dir is None: by if True: "
anyone know which line in the file i should change
there is three different lines with that code
Yep encountered same exceptionI'm sorry, but an uncaught exception occurred.
While running game code:
File "game/game_roles/role_head_researcher.rpy", line 840, in <module>
AttributeError: 'NoneType' object has no attribute 'add_unique_on_room_enter_event'
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "script.rpyc", line 469, in script call
File "script.rpyc", line 469, in script call
File "script.rpyc", line 506, in script call
File "game_roles/role_head_researcher.rpyc", line 840, in script
File "C:\Users\\Downloads\LabRats2-Reformulate-2024.05-pc\renpy\ast.py", line 1138, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "C:\Users\\Downloads\LabRats2-Reformulate-2024.05-pc\renpy\python.py", line 1122, in py_exec_bytecode
exec(bytecode, globals, locals)
File "game/game_roles/role_head_researcher.rpy", line 840, in <module>
File "game/people/Ashley/production_assistant_role_definition_ren.py", line 48, in add_mc_serum_intro_action
AttributeError: 'NoneType' object has no attribute 'add_unique_on_room_enter_event'
Ashley need to be in the game for it to work bc i cheat the game too fastYep encountered same exception