Create and Fuck your AI Slut -70% OFF
x

Harvey Danger

Member
Jul 10, 2017
168
156
119
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 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). :)
 

hibakuxa

Newbie
Nov 10, 2017
31
32
37
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.
 

Harvey Danger

Member
Jul 10, 2017
168
156
119
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.

Start:



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()


End:


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"]


I trimmed some stuff out because potential spoilers are everywhere, but you get the idea.
 

BIGJOB37

Newbie
Feb 15, 2018
64
18
195
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.
Thank you for replying.
 

McLOVINu

Active Member
Mar 18, 2018
894
409
187
Bug?
Sometimes a persons hair becomes transparent, and I can see the persons head's outline/shape through the hair :(

edit: after some testing, it seems its mostly 'Black' and 'Brown' color, EVERY hair style is affected.
[and yea, like 1 or two other colors it is slightly visible aswell, but not too bad]

edit: another Bug?
The Sex Shop Owner [Cara] love and/or 100% sluttiness dropping each day :(
 
Last edited:

razor1977

Member
Jan 2, 2023
122
138
166
i don't dislike this game, but if you are looking for a quick fap you are probably going to want to look Elsewhere, just about started a friction fire in my boxers
 

McLOVINu

Active Member
Mar 18, 2018
894
409
187
Ok, are some :star: characters forever missable?
Example:
InstaPic Girl [Iris] (unlocking oral taboo for sister, you can 'Let's Make a Deal', she asks you to buy phone, InstaPic Girl shows up when you do? ... only way?)
^if I go route of breaking the taboo 4 times instead of 'convincing', does InstaPic Girl [Iris] never show up?
 
  • Like
Reactions: rb813

nieli

Newbie
Feb 13, 2019
23
22
103
I'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'
 
Jul 3, 2017
61
25
132
anyone 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
 

Acidcola

Newbie
Nov 2, 2018
99
42
178
I'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'
Yep encountered same exception
 

Chameleo

Member
May 20, 2017
404
407
266
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 think it's the problem of using multiple of these serums. Maybe I can't use more than one? When one ends it puts the person where he was before, but when the second one ends, it goes even below that?
 

McLOVINu

Active Member
Mar 18, 2018
894
409
187
Um, I searched thread for answer, got all the required steps, and months into game, Ashley still has not triggered!

Suggestion trait researched [drug that has +10 suggestion, right? but I only got it to mastery 1.5, does that matter?]
Have Stephanie as your head researcher [she started as such, and I have not changed her position]
Have an open employee spot [sitting on 2 open slots now]
Your business needs to be open for at least 14 days [10000% beyond this]
Then, monday followed all those. [months in game]

edit: ok ok i got stephanie mixed up with Sarah, let me take stephanie out on date next to test. [I'm pretty sure the search results i looked through mentioned it being sarah's sister, but meh]
 
Last edited:

DA22

Devoted Member
Jan 10, 2018
8,099
16,724
893
Um, I searched thread for answer, got all the required steps, and months into game, Ashley still has not triggered!

Suggestion trait researched [drug that has +10 suggestion, right? but I only got it to mastery 1.5, does that matter?]
Have Stephanie as your head researcher [she started as such, and I have not changed her position]
Have an open employee spot [sitting on 2 open slots now]
Your business needs to be open for at least 14 days [10000% beyond this]
Then, monday followed all those. [months in game]
Not sure if there is also a research tier requirement or others or you set your crises events too high so this one never gets a chance to fire as others take over all the time, but if all else fails go on a date with Steph to find her home location. Ashley will also be there if visit that location (do not go at night though) and you can hire her directly when love and other stats high enough to make her offer to hire.
 
4.60 star(s) 79 Votes