4.70 star(s) 55 Votes

VonLost

New Member
Apr 22, 2019
7
2
Hey, I remember someone said that the girls physical characteristics can be altered in some archive from the game, in that way all the new girls spawned in the world follows those characteristics.
how can that be done?
There was one solution to create a file named favor_slim_body_types.rpy and put in it:

init -1 python:
list_of_weighted_body_types = []
list_of_weighted_body_types.append(["thin_body", 83])
list_of_weighted_body_types.append(["standard_body", 15])
list_of_weighted_body_types.append(["curvy_body", 2])

def get_random_body_type():
return get_random_from_weighted_list(list_of_weighted_body_types)

The numbers being the weighting of each type. Is this what you mean?
 

chaosstrider32

New Member
Jan 1, 2020
2
0
Hey, I'm not sure if this has been reported yet but there seems to an issue with the coffee event - threesome choice. It seems to cause a hard crash when you choose this option.

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

While running game code:
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
ScriptError: could not find label 'intro_threesome_sixty_nine_oral_girl_two'.

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

Full traceback:
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\bootstrap.py", line 306, in bootstrap
    renpy.main.main()
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\main.py", line 513, in main
    run(restart)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\main.py", line 139, in run
    renpy.execution.run_context(True)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\execution.py", line 879, in run_context
    context.run()
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\script.py", line 873, in lookup
    raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'intro_threesome_sixty_nine_oral_girl_two'.

Windows-8-6.2.9200
Ren'Py 7.0.0.196
Lab Rats 2 - Down to Business v0.23.2
Thu Jan 02 21:36:41 2020
 

LZ_Starbuck

Member
Mar 25, 2019
189
337
Hey, I'm not sure if this has been reported yet but there seems to an issue with the coffee event - threesome choice. It seems to cause a hard crash when you choose this option.

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

While running game code:
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
ScriptError: could not find label 'intro_threesome_sixty_nine_oral_girl_two'.

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

Full traceback:
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\bootstrap.py", line 306, in bootstrap
    renpy.main.main()
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\main.py", line 513, in main
    run(restart)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\main.py", line 139, in run
    renpy.execution.run_context(True)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\execution.py", line 879, in run_context
    context.run()
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "game/script.rpy", line 8666, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8934, in script call
    call advance_time from _call_advance_time_2
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/coffee_break.rpy", line 38, in script call
    call coffee_break_chit_chat_label(person_one, person_two, person_three) from _call_coffee_break_chit_chat_label_1
  File "game/Mods/Crisis/coffee_break.rpy", line 115, in script call
    call start_threesome(person_two, person_three) from coffe_break_threesome_test_3
  File "game/Mods/Threesome/Threesome_core.rpy", line 300, in script call
    $ active_mc_position.call_intro(the_person_one, the_person_two, mc.location, object_choice, round)
  File "E:\GM\labrats\Lab_Rats_2-v0.23.2-pc\renpy\script.py", line 873, in lookup
    raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'intro_threesome_sixty_nine_oral_girl_two'.

Windows-8-6.2.9200
Ren'Py 7.0.0.196
Lab Rats 2 - Down to Business v0.23.2
Thu Jan 02 21:36:41 2020
Thanks, that's due to a dumb typo. I'll have it fixed shortly.

Also, for anyone just downloading, if you are playing Lab Rats version 23.2, make sure you download the master branch, which is currently the best branch for that version. IF you are playing version 24.0, download the develop branch. That is currently the best branch for the latest update.
 

hhd12258

Member
Jun 18, 2018
236
91
LZ_Starbuck Tristim ???
Code:
I'm sorry, but an uncaught exception occurred. 
 
While running game code: 
  File "game/script.rpy", line 8683, in script call 
    $ picked_option.call_action() 
  File "game/script.rpy", line 8919, in script call 
    call advance_time from _call_advance_time 
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call 
    $ act.call_action() 
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call 
    $ the_crisis.call_action() 
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in script 
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1) 
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in <module> 
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1) 
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' 
 
-- Full Traceback ------------------------------------------------------------ 
 
Full traceback: 
  File "game/script.rpy", line 8683, in script call 
    $ picked_option.call_action() 
  File "game/script.rpy", line 8919, in script call 
    call advance_time from _call_advance_time 
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call 
    $ act.call_action() 
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call 
    $ the_crisis.call_action() 
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in script 
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1) 
  File "games/renpy/Lab_Rats_2-v0.23.2-pc/renpy/ast.py", line 862, in execute 
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store) 
  File "games/renpy/Lab_Rats_2-v0.23.2-pc/renpy/python.py", line 1912, in py_exec_bytecode 
    exec bytecode in globals, locals 
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in <module> 
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1) 
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' 
 
Linux
Ren'Py 7.0.0.196 
Lab Rats 2 - Down to Business v0.23.2
 

Tristim

Member
Modder
Donor
Nov 12, 2018
314
1,203
LZ_Starbuck Tristim ???
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 8683, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8919, in script call
    call advance_time from _call_advance_time
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in script
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1)
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in <module>
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1)
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'

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

Full traceback:
  File "game/script.rpy", line 8683, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 8919, in script call
    call advance_time from _call_advance_time
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 152, in script call
    $ act.call_action()
  File "game/Mods/Core/Mechanics/Label_Overrides/advance_time_override.rpy", line 192, in script call
    $ the_crisis.call_action()
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in script
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1)
  File "games/renpy/Lab_Rats_2-v0.23.2-pc/renpy/ast.py", line 862, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "games/renpy/Lab_Rats_2-v0.23.2-pc/renpy/python.py", line 1912, in py_exec_bytecode
    exec bytecode in globals, locals
  File "game/Mods/Crisis/dirty_laundry.rpy", line 304, in <module>
    $ set_HR_director_tag("business_HR_eff_bonus", get_HR_director_tag("business_HR_eff_bonus") + 1)
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'

Linux
Ren'Py 7.0.0.196
Lab Rats 2 - Down to Business v0.23.2
Thanks for the spot, it has been fixed in v0.24.x dev branch.
 
  • Like
Reactions: hhd12258

hhd12258

Member
Jun 18, 2018
236
91
Tristim
Given, https://f95zone.to/threads/lab-rats-2-v0-23-2-vren.7260/post-2356034
Specifically
"
This finishes current research project or boost trait mastery to obscene levels (this goes into 1 line in the console - to activate console look in "Console commands" further up):

mc.business.listener_system.fire_event("player_research", amount = mc.business.research_progress(9999999,999999,99999))
"
Could the mod loop through all current resesrched seurms and apply something like the above. I guess need to set as 'current research' first.

Its kinda irritating to have to do these manually with each new version.
 

partanen

Selectively Active Member
Uploader
Donor
Sep 13, 2017
2,012
13,694
Something in Mod connected with Laundry and HR Manager, I assume...
You don't have permission to view the spoiler content. Log in or register now.

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

Tristim

Member
Modder
Donor
Nov 12, 2018
314
1,203
Something in Mod connected with Laundry and HR Manager, I assume...
You don't have permission to view the spoiler content. Log in or register now.

Edit:
You don't have permission to view the spoiler content. Log in or register now.
This has been addressed for v0.24.x (the beta is available to Patreons, release is set in 4-5 days), I've all reported issues in the bugfix branch already, but haven't had time for a full play-through yet. So if you don't have access to the Patreon version, please be patient a few more days.

I've also hotfixed the master branch for v0.23.2 to fix this issue.
 
  • Like
Reactions: partanen

Tristim

Member
Modder
Donor
Nov 12, 2018
314
1,203
Would someone be keen and talented enough to add a cigarette as a new outfit ?
The character rendering requires images from VREN, due to the many head / hand positions, adding overlay images is not as easy and we have no 'graphics artist' on the mod team.
 

The Grifter

Active Member
May 28, 2017
639
1,041
Getting an error during the Vaginal Fetish event with mom (23.2 master mod, 23.2 bugfix added to vanilla game) - maybe it's just adding one line via console:

You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
Reactions: hhd12258

Tristim

Member
Modder
Donor
Nov 12, 2018
314
1,203
Getting an error during the Vaginal Fetish event with mom (23.2 master mod, 23.2 bugfix added to vanilla game) - maybe it's just adding one line via console:

You don't have permission to view the spoiler content. Log in or register now.
Thanks for the spot, the v0.23.2 release has been hotfixed. The fix is also applied to the dev branch for v0.24.x.
 

VonLost

New Member
Apr 22, 2019
7
2
In SB_Standing_Variant.rpy, line 352 should be 'elif' instead of if - otherwise both of the if statements trigger which is a bit odd.

Also, typo on line 340 - 'partyway' should be 'partway' IMHO
 
  • Like
Reactions: Tristim

Hamakabula

Member
Nov 21, 2017
120
204
Game crashes during startup:

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

I've had a similar issue when the mod did not match the game version in the past, but I was using the direct downloads (which the OP says are 0.24.x with the 0.24.1 version of the game.

Tried looking at the full git repository but the latest version there seems to be 0.23.2
 

LZ_Starbuck

Member
Mar 25, 2019
189
337
Game crashes during startup:

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

I've had a similar issue when the mod did not match the game version in the past, but I was using the direct downloads (which the OP says are 0.24.x with the 0.24.1 version of the game.

Tried looking at the full git repository but the latest version there seems to be 0.23.2
The current master version is for 0.23.2, the last develop version is for 24.0, I haven't had the chance yet to test and see if it is compatible with 24.1, it might be a compatibility issue.

EDIT: With a fresh install I was able to recreate the issue. The mod so far has been compatible with 24.0 for me, but the bugfix repo hasn't been updated yet for 24.0, so the compatibility issue might be there.
 
Last edited:
  • Like
Reactions: Hamakabula
4.70 star(s) 55 Votes