dmmt

Well-Known Member
May 8, 2020
1,003
972
1st time I tried to test the 1st serum on Lily:

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 256, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 369, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_sister.rpy", line 185, in script call
    call give_serum(the_person) from _call_give_serum_7
  File "game/general_actions/location_actions/business_actions.rpy", line 113, in script
    $ the_person.give_serum(copy.copy(the_serum)) #use a copy rather than the main class, so we can modify and delete the effects without changing anything else.
  File "game/general_actions/location_actions/business_actions.rpy", line 113, in <module>
    $ the_person.give_serum(copy.copy(the_serum)) #use a copy rather than the main class, so we can modify and delete the effects without changing anything else.
  File "game/major_game_classes/character_related/Person.rpy", line 1025, in give_serum
    the_serum_design.run_on_apply(self)
TypeError: run_on_apply() takes exactly 3 arguments (2 given)

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/script.rpy", line 256, in script call
    call talk_person(picked_option) from _call_talk_person
  File "game/script.rpy", line 369, in script call
    $ _return.call_action(the_person)
  File "game/game_roles/role_sister.rpy", line 185, in script call
    call give_serum(the_person) from _call_give_serum_7
  File "game/general_actions/location_actions/business_actions.rpy", line 113, in script
    $ the_person.give_serum(copy.copy(the_serum)) #use a copy rather than the main class, so we can modify and delete the effects without changing anything else.
  File "D:\Unplayed\Lab_Rats_2-v0.39.1-pc\Lab_Rats_2-v0.39.1-pc\renpy\ast.py", line 927, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "D:\Unplayed\Lab_Rats_2-v0.39.1-pc\Lab_Rats_2-v0.39.1-pc\renpy\python.py", line 2028, in py_exec_bytecode
    exec bytecode in globals, locals
  File "game/general_actions/location_actions/business_actions.rpy", line 113, in <module>
    $ the_person.give_serum(copy.copy(the_serum)) #use a copy rather than the main class, so we can modify and delete the effects without changing anything else.
  File "game/major_game_classes/character_related/Person.rpy", line 1025, in give_serum
    the_serum_design.run_on_apply(self)
TypeError: run_on_apply() takes exactly 3 arguments (2 given)

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Lab Rats 2 - Down to Business v0.39.1
Sat Apr 17 14:48:38 2021
 

JK3

Member
Jun 19, 2017
213
123
Installed only the bugfix or both files?
Then you don't need to be surprised that it doesn't work. It has to be 2 files and if something would go back you could have seen it because I posted 2 links there.
That's silly, why would you insist on a bug fix being attached to a mod? Do you work for EA? Is this actually The Sims?
I just want to play the base game without it breaking, I don't want whatever is in the mod.
 

Helger

Newbie
Dec 2, 2017
38
19
That's silly, why would you insist on a bug fix being attached to a mod? Do you work for EA? Is this actually The Sims?
I just want to play the base game without it breaking, I don't want whatever is in the mod.
That's silly, why would you insist on a bug fix being attached to a mod? Do you work for EA? Is this actually The Sims?
I just want to play the base game without it breaking, I don't want whatever is in the mod.
Sorry then you did not understand anything and the bugfix alone does not work. You can either skip the game and delete it or start reading descriptions to understand that both files only work together. If that doesn't suit you, please complain to the modding team in the other thread.
 

Krankeseele

Newbie
Aug 3, 2017
82
114

Forgot to fix side effect traits, which meant more crashes for serum sometimes. Here's an updated v0.39.3 that fixes the issue:
PC:
Mac:
Android:
If you already have v0.39.2 you can instead grab this fixed copy of the bugged script file. Replace the existing file in the /game folder, the change should be save game compatible.

Pls Folks xD found it on his side :p
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149
I used this one
Trying to test a first batch on someone results in

Code:
[code]
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 343, in script call
    $ picked_option.call_action()
  File "game/general_actions/location_actions/business_actions.rpy", line 135, in script call
    call advance_time from _call_advance_time_2
  File "game/script.rpy", line 494, in script call
    $ crisis.call_action()
  File "game/crises/crises.rpy", line 2560, in script
    call screen employee_overview(white_list = mc.business.research_team, person_select = True)
  File "renpy/common/000statements.rpy", line 531, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 17, in execute
    python:
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 19, in <module>
    showing_team = [] + mc.business.research_team + mc.business.production_team + mc.business.supply_team + mc.business.market_team + mc.business.hr_team
TypeError: can only concatenate list (not "MappedList") to list

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/script.rpy", line 343, in script call
    $ picked_option.call_action()
  File "game/general_actions/location_actions/business_actions.rpy", line 135, in script call
    call advance_time from _call_advance_time_2
  File "game/script.rpy", line 494, in script call
    $ crisis.call_action()
  File "game/crises/crises.rpy", line 2560, in script
    call screen employee_overview(white_list = mc.business.research_team, person_select = True)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ast.py", line 1962, in execute
    self.call("execute")
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ast.py", line 1950, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\statements.py", line 277, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 531, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\exports.py", line 2905, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ui.py", line 297, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 2702, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 3094, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 430, in visit_all
    callback(self)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 3094, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 440, in per_interact
    self.update()
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 625, in update
    self.screen.function(**self.scope)
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 17, in execute
    python:
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 19, in <module>
    showing_team = [] + mc.business.research_team + mc.business.production_team + mc.business.supply_team + mc.business.market_team + mc.business.hr_team
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\python.py", line 837, in newmethod
    l = method(*args, **kwargs)
TypeError: can only concatenate list (not "MappedList") to list

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Lab Rats 2 - Down to Business v0.39.3
Sat Apr 17 11:46:15 2021
[/CODE]
That appears to be a patch for going on the labrats 38.1 download. The current version on this site is 39.1 which it won't work with. If you want to patch the 39.1 to 39.3 use this https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5564569
That simply updates it to 39.3 which fixed the bugs in 39.1. That doesn't add any mods.
The other option is use the links on this post to get 39.3 from the developers link https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5556296

I can't tell you if the primary mod on this will work with it or not. I created my own.
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149

Forgot to fix side effect traits, which meant more crashes for serum sometimes. Here's an updated v0.39.3 that fixes the issue:
PC: Lab Rats 2 v0.39.3-PC
Mac: Lab Rats 2 v0.39.3-Mac
Android: Lab Rats 2 v0.39.3-Android
If you already have v0.39.2 you can instead grab this fixed copy of the bugged script file. Replace the existing file in the /game folder, the change should be save game compatible. side_effect_traits.rpy

Pls Folks xD found it on his side :p
Yep, posted that back here https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5556296
The better option would be to use the patch I created to convert 39.1 to 39.3
It's a fraction of the size. It was made by comparing the directories and files using winmerge then packaging the difference.
Available here
https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5564569
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149
I used this one
Trying to test a first batch on someone results in

Code:
[code]
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 343, in script call
    $ picked_option.call_action()
  File "game/general_actions/location_actions/business_actions.rpy", line 135, in script call
    call advance_time from _call_advance_time_2
  File "game/script.rpy", line 494, in script call
    $ crisis.call_action()
  File "game/crises/crises.rpy", line 2560, in script
    call screen employee_overview(white_list = mc.business.research_team, person_select = True)
  File "renpy/common/000statements.rpy", line 531, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 17, in execute
    python:
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 19, in <module>
    showing_team = [] + mc.business.research_team + mc.business.production_team + mc.business.supply_team + mc.business.market_team + mc.business.hr_team
TypeError: can only concatenate list (not "MappedList") to list

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "game/script.rpy", line 343, in script call
    $ picked_option.call_action()
  File "game/general_actions/location_actions/business_actions.rpy", line 135, in script call
    call advance_time from _call_advance_time_2
  File "game/script.rpy", line 494, in script call
    $ crisis.call_action()
  File "game/crises/crises.rpy", line 2560, in script
    call screen employee_overview(white_list = mc.business.research_team, person_select = True)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ast.py", line 1962, in execute
    self.call("execute")
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ast.py", line 1950, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\statements.py", line 277, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 531, in execute_call_screen
    store._return = renpy.call_screen(name, *args, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\exports.py", line 2905, in call_screen
    rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\ui.py", line 297, in interact
    rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 2702, in interact
    repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 3094, in interact_core
    root_widget.visit_all(lambda i : i.per_interact())
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 541, in visit_all
    d.visit_all(callback, seen)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 430, in visit_all
    callback(self)
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\core.py", line 3094, in <lambda>
    root_widget.visit_all(lambda i : i.per_interact())
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 440, in per_interact
    self.update()
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\display\screen.py", line 625, in update
    self.screen.function(**self.scope)
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 1, in execute
    screen employee_overview(white_list = None, black_list = None, person_select = False): #If select is True it returns the person's name who you click on. If it is false it is a normal overview menu that lets you bring up their detailed info.
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 17, in execute
    python:
  File "game/game_screens/business_screens/employee_overview_ui.rpy", line 19, in <module>
    showing_team = [] + mc.business.research_team + mc.business.production_team + mc.business.supply_team + mc.business.market_team + mc.business.hr_team
  File "G:\Documents\Games\New folder\renpy\Lab_Rats_2-v0.39.3-pc\renpy\python.py", line 837, in newmethod
    l = method(*args, **kwargs)
TypeError: can only concatenate list (not "MappedList") to list

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Lab Rats 2 - Down to Business v0.39.3
Sat Apr 17 11:46:15 2021
[/CODE]
That appears to be a patch for going on the labrats 38.1 download. The current version on this site is 39.1 which it won't work with. If you want to patch the 39.1 to 39.3 use this https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5564569
That simply updates it to 39.3 which fixed the bugs in 39.1. That doesn't add any mods.
The other option is use the links on this post to get 39.3
Currently, the links from Lab Rats 2 are out of date. The old v0.39.1 is shown on the first page. Please download v0.39.3 from the Patreon website, this is currently the current version. The links from the mod are also out of date, they are for v0.38.1 and not compatible with the current version.
This link leads you to the bugfix for v0.39.3:

This link leads you to the mod for v0.39.3:

Both files are required and expand the game with additional tasks, serums ... and whoever wants a chance to cheat. The files can change several times a day, but it is not necessary to reload them after each change. An exception would be if you get endless error messages. I also point out that the mod is a beta version and is more intended for testing. But I can say myself that it works.

There is a second mod that I would like to refer to. I would call it a "Vanilla Bugfix". It doesn’t offer that big of extensions for the game, but it is supposed to fix the bugs in the game. You can find it here:
https://f95zone.to/threads/lab-rats-2-mods.32881/post-5551392
Edit: After I got a comment from the author of the mod, he noticed that the mod didn't fix any bugs. I have probably misunderstood something while reading and hereby correct it.

If you get an error message with the serum, you can edit a script file as a third option. It has already been posted several times here in the forum what needs to be changed where. In general, it cannot be ruled out that other errors may also appear in the game.

My recommendation is to use the above mod with the bugfix, as the other mod does not fix any bugs. Editing the scripts only fixes the serum problem.
I wanted to leave the whole thing as info for those who have problems with the game.

Yesterday I updated my game with bugfix and mod. My game version has been v0.39.3 since it was released. Now when I loaded my save I got this: View attachment 1143678 Gradually I get used to it with a smile when restarting the game.:LOL::ROFLMAO::LOL: Let's start a new one.
That actually appears to be a patch for 38.1.
You can patch 39.1 to 39.3 and fix the bugs that the same time using this patch. https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5564569
 

thomthehound

Newbie
Jan 28, 2018
33
85
I love how not a single release of this game has ever been playable without a patch or a bug-fix. It's a complex game (for renpy, at leas) and I like it and all... but... wow. Almost seems like it would take effort to be so meme-worthy.
 

djustmie

Member
Nov 5, 2017
467
139
its pretty funny that a patch after being added the social media accounts still dont appear after they tell you about them even with the mod and bugfix installed, no faith in vren or the mod guys this is just ridiculous
since i am not a patreon an
Sorry then you did not understand anything and the bugfix alone does not work. You can either skip the game and delete it or start reading descriptions to understand that both files only work together. If that doesn't suit you, please complain to the modding team in the other thread.
i reinstalled game with 93.3 as you recommended and used the link you gave
i installed the bugfix with the link yopu gave
i did not install the mod

i played several hours , did gave some serums to different girls
no problems or errors so far

maybe it will /keep working without the mod , if not i appoligize to you that i didnt listen ;-)

thank you anyway for your time and help
 

Helger

Newbie
Dec 2, 2017
38
19
Update:
https://f95zone.to/threads/lab-rats-2-v0-39-1-vren.7260/post-5559695
In v0.39 a lot was changed, which might make it possible to use the bugfix alone. So far nothing has been published that could confirm this.
Tristimdorion told me the following:
That should work but note that the save games are not compatible between bugfix and original
He has thus confirmed what has not yet been officially announced, that the bugfix also works on its own.
I think many will be happy with this news and can now play the v0.39.3 bugfixed.
 
Last edited:
Nov 1, 2019
147
53
I don't seem to be able to get cowgirl working. The codes seems to be there but it doesn't seem to be one of the options. Is there some range of skills/sluttiness/love/obedience/? I was missing?
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149
Edit: Everything that worked and knew without cheating up to v0.38 has changed completely with v0.39. Everything has been made much more complex ...
At first, I thought the same thing. Then I realized nope that isn't true. It only appears more complex.
I raised int up 1 and charisma up 2. Research 4, then rest 2 each into sex stats just 1 in anal.
The first 2 weeks don't make shit. Just research. Make only the serums you create in research.
You can jack off the very first day in the morning to get enough points to open the first research. Screw around with Stephany, your sister and mom every chance you get slip out a few days take mom to lunch to raise her up some same with Stephany.
One you can create the first serum with suggestion in it have Stephany advance your research. Then research the medical, then research advanced serum with 2 slots not the extra slot one. Then make the first serum you are going to actually produce.
You should still have 500 by the time this happens. Hire a supply and a production. Handle sales and HR yourself. Let steph research the next serum suggest 30% and clinical. You should have built up enough money in a few days to hire the sales person. At this point you will need to come in early morning and do HR 1 time then research rest of day. You'll be able to make the serum with 30% suggest and clinical in about a week. That's with no mods. After which you switch production to it and your money worries are over.
You can see what I have by day 24 in the picture

 

Krankeseele

Newbie
Aug 3, 2017
82
114
Hey it's me again,like I said before. I play the modded version of LR2.The Questions are now:How can I make the webcame show with Mom n Sis anyfurther n Can I change somehow the text on the clothes? n are there any new faces or haircuts/pudes outthere? Ty 4 ur help
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149
Hey it's me again,like I said before. I play the modded version of LR2.The Questions are now:How can I make the webcame show with Mom n Sis anyfurther n Can I change somehow the text on the clothes? n are there any new faces or haircuts/pudes outthere? Ty 4 ur help
If the question is modded related it should probably be asked on that forum. You will have a better chance of getting an answer.
 

Diconica

Well-Known Member
Apr 25, 2020
1,100
1,149

Zolfried

Member
May 31, 2017
155
103
is there a discord or a wikia in progress for this game? i have some questions i feel those platforms would be better then here.
 

GraGsoP

New Member
Oct 25, 2017
8
2
The game crashed and I got this
Code:
[CODE]I'm sorry, but an uncaught exception occurred.



While running game code:

  File "game/script.rpy", line 223, in script call

    $ talk_action.call_action(picked_option)

  File "game/crises/limited_time_events.rpy", line 2250, in script call

    call talk_person(the_person) from _call_talk_person_17

  File "game/script.rpy", line 369, in script call

    $ _return.call_action(the_person)

  File "game/game_roles/role_employee_freeuse.rpy", line 101, in script call

    call fuck_person(the_person, private = False) from _call_fuck_person_6

  File "game/sex_mechanics.rpy", line 188, in script call

    call pick_position(the_person, ignore_taboo = ignore_taboo) from _call_pick_position

  File "game/sex_mechanics.rpy", line 382, in script

    $ picked_position = renpy.display_menu(position_option_list,True,"Choice")

  File "game/script.rpy", line 223, in script call

    $ talk_action.call_action(picked_option)

  File "game/crises/limited_time_events.rpy", line 2250, in script call

    call talk_person(the_person) from _call_talk_person_17

  File "game/script.rpy", line 369, in script call

    $ _return.call_action(the_person)

  File "game/game_roles/role_employee_freeuse.rpy", line 101, in script call

    call fuck_person(the_person, private = False) from _call_fuck_person_6

  File "game/sex_mechanics.rpy", line 188, in script call

    call pick_position(the_person, ignore_taboo = ignore_taboo) from _call_pick_position

  File "game/sex_mechanics.rpy", line 382, in script

    $ picked_position = renpy.display_menu(position_option_list,True,"Choice")

  File "game/sex_mechanics.rpy", line 382, in <module>

    $ picked_position = renpy.display_menu(position_option_list,True,"Choice")

  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute

    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.

  File "game/game_screens/hud_screens/person_info_hud.rpy", line 1, in execute

    screen person_info_ui(the_person, display_layer = "solo"): #Used to display stats for a person while you're talking to them.

  File "game/game_screens/hud_screens/person_info_hud.rpy", line 5, in execute

    python:

  File "game/game_screens/hud_screens/person_info_hud.rpy", line 10, in <module>

    positive_effects += get_coloured_arrow(1)+get_red_heart(the_person.situational_sluttiness[situation][0])+" - " + the_person.situational_sluttiness[situation][1] + "\n"

  File "game/helper_functions/heart_formatting_functions.rpy", line 7, in get_red_heart

    the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.

     File "game/helper_functions/heart_formatting_functions.rpy", line 5, in get_red_heart

    if sluttiness >= 20:

RuntimeError: maximum recursion depth exceeded in cmp




Ren'Py 7.3.5.606

Lab Rats 2 - Down to Business v0.39.3

Wed Apr 21 22:08:22 2021
 

JSF2

Member
Jun 1, 2017
185
86
I get lots of crashes from clean install and new game (no old save), during the hire new employee routine when I keep looking at more candidates:

You don't have permission to view the spoiler content. Log in or register now.

I did activate console and cheated mc. stats and money, but that doesn't remove image files from an archive.

same problem in 0.39.1 and 0.39.3
 
3.40 star(s) 127 Votes