SMC85

Newbie
Apr 15, 2024
80
37
71
It's been quite a while since I played or updated the game, so when I did and started the game I get an error at start I never got before.

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

Could it be related to also having Kina, Kaiden and the VT mods?
 
Mar 6, 2021
112
58
152
ok so i was running a previous save on here and had to restart due to some coding changes... i went into the ingame cheat and set all the settings i had previously [research tier etc] but now i cant progress with Ashley. anyone have the Console Code for that interaction?
 

AXELXX

Newbie
Apr 10, 2018
69
26
161
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label _call_lust_blowjob_office_label_auto is defined twice, at File "game/mods/lr2-mods_kaden-host/Mods_Kaden/actions/auto_research.rpy", line 163:
                        call lust_blowjob_office_label() from _call_lust_blowjob_office_label_auto
and File "game/mods/lr2-mods_kaden-host/Mods_Kaden/actions/auto_research.rpy", line 189:
                        call lust_blowjob_office_label() from _call_lust_blowjob_office_label_auto


Ren'Py Version: Ren'Py 8.4.1.25072401
Sun Oct 26 14:34:06 2025
 

Phoexist

Active Member
Mar 11, 2020
505
559
258
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label _call_lust_blowjob_office_label_auto is defined twice, at File "game/mods/lr2-mods_kaden-host/Mods_Kaden/actions/auto_research.rpy", line 163:
                        call lust_blowjob_office_label() from _call_lust_blowjob_office_label_auto
and File "game/mods/lr2-mods_kaden-host/Mods_Kaden/actions/auto_research.rpy", line 189:
                        call lust_blowjob_office_label() from _call_lust_blowjob_office_label_auto


Ren'Py Version: Ren'Py 8.4.1.25072401
Sun Oct 26 14:34:06 2025
A defined twice error means the same label exists in two different files. MOST likely this means you still have the archived File in addition to the more individual script files in the game folder. You could simply open the file given and delete one of those labels. Though as that is a a 3rd party mod, I couldn't tell you which might be the more up-to-date file or if they were both the same.
 
  • Like
Reactions: AXELXX
Jul 17, 2018
381
168
137
Just a quick observation. If you don't blackmail your cousin Gabrielle and follow her storyline, you can still unlock and visit the strip club, but you won't get the option to buy it.
 

Draakaap23

Dying is always an option
Donor
Jul 5, 2017
1,281
2,885
499
Just a quick observation. If you don't blackmail your cousin Gabrielle and follow her storyline, you can still unlock and visit the strip club, but you won't get the option to buy it.
Don´t you get it through the sex shop story line by investing enough in that place, after the strip-club closes?
 
Mar 6, 2021
112
58
152
Don´t you get it through the sex shop story line by investing enough in that place, after the strip-club closes?
Correction you can purchase it even if you don't blackmail her. if you gain the ability to blackmail her that counts allowing you to purchase the club after talking to Aunt and Sex Store owner. The Club is part of the Sex Store storyline but other characters who don't have an influence on the club itself are part of the prereq in this case you have to talk to Aunt after Store Owner comes and says that you could buy it. talk to Aunt then Sleep on it for a few days then go back to the Store Owner which will trigger the purchase options
 

AXELXX

Newbie
Apr 10, 2018
69
26
161
A defined twice error means the same label exists in two different files. MOST likely this means you still have the archived File in addition to the more individual script files in the game folder. You could simply open the file given and delete one of those labels. Though as that is a a 3rd party mod, I couldn't tell you which might be the more up-to-date file or if they were both the same.
thank you
 

AXELXX

Newbie
Apr 10, 2018
69
26
161
When I enter the lobby, this appears:

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

While running game code:
  File "game/script.rpy", line 528, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 477, in script
    call screen main_choice_display(build_menu_items([build_people_list(), build_actions_list(), build_nearby_location_list()]))
  File "game/script.rpy", line 477, in <module>
    call screen main_choice_display(build_menu_items([build_people_list(), build_actions_list(), build_nearby_location_list()]))
                                                                           ~~~~~~~~~~~~~~~~~~^^                                 
  File "game/script.rpy", line 347, in build_actions_list
    actions_list.extend(mc.location.valid_actions)
                        ^^^^^^^^^^^^^^^^^^^^^^^^^ 
  File "game/major_game_classes/game_logic/Room_ren.py", line 252, in valid_actions
    actions = [x for x in self.actions if x.is_action_enabled() or x.is_disabled_slug_shown()]
  File "game/major_game_classes/game_logic/Room_ren.py", line 252, in <lambda>
    actions = [x for x in self.actions if x.is_action_enabled() or x.is_disabled_slug_shown()]
                                          ~~~~~~~~~~~~~~~~~~~^^                               
  File "game/major_game_classes/game_logic/Action_ren.py", line 73, in is_action_enabled
    requirement_return = self.check_requirement(extra_args)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "game/major_game_classes/game_logic/Action_ren.py", line 67, in check_requirement
    return self.requirement(*extra_args)
           ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "game/mods/lr2-mods_kaden-host/Mods_Kaden/room_actions/lobby_actions.rpy", line 67, in company_breakfast_requirement
    if mc.business.funds > (10*temp_list):
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
TypeError: '>' not supported between instances of 'int' and 'RevertableList'

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

Traceback (most recent call last):
  File "game/script.rpy", line 528, in script call
    $ picked_option.call_action()
  File "game/script.rpy", line 477, in script
    call screen main_choice_display(build_menu_items([build_people_list(), build_actions_list(), build_nearby_location_list()]))
  File "renpy/ast.py", line 2231, in execute
    self.call("execute")
    ~~~~~~~~~^^^^^^^^^^^
  File "renpy/ast.py", line 2195, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
           ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "renpy/statements.py", line 379, in call
    return method(parsed, *args, **kwargs)
           ~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
  File "renpy/common/000statements.rpy", line 687, in execute_call_screen
    args, kwargs = a.evaluate()
                   ~~~~~~~~~~^^
  File "renpy/parameter.py", line 513, in evaluate
    value = renpy.python.py_eval(v, locals=scope)
            ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "renpy/python.py", line 1292, in py_eval
    return py_eval_bytecode(code, globals, locals)
           ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^
  File "renpy/python.py", line 1285, in py_eval_bytecode
    return eval(bytecode, globals, locals)
           ~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "game/script.rpy", line 477, in <module>
    call screen main_choice_display(build_menu_items([build_people_list(), build_actions_list(), build_nearby_location_list()]))
                                                                           ~~~~~~~~~~~~~~~~~~^^                                 
  File "game/script.rpy", line 347, in build_actions_list
    actions_list.extend(mc.location.valid_actions)
                        ^^^^^^^^^^^^^^^^^^^^^^^^^ 
  File "game/major_game_classes/game_logic/Room_ren.py", line 252, in valid_actions
    actions = [x for x in self.actions if x.is_action_enabled() or x.is_disabled_slug_shown()]
  File "game/major_game_classes/game_logic/Room_ren.py", line 252, in <lambda>
    actions = [x for x in self.actions if x.is_action_enabled() or x.is_disabled_slug_shown()]
                                          ~~~~~~~~~~~~~~~~~~~^^                               
  File "game/major_game_classes/game_logic/Action_ren.py", line 73, in is_action_enabled
    requirement_return = self.check_requirement(extra_args)
                         ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "game/major_game_classes/game_logic/Action_ren.py", line 67, in check_requirement
    return self.requirement(*extra_args)
           ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
  File "game/mods/lr2-mods_kaden-host/Mods_Kaden/room_actions/lobby_actions.rpy", line 67, in company_breakfast_requirement
    if mc.business.funds > (10*temp_list):
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 
TypeError: '>' not supported between instances of 'int' and 'RevertableList'

Windows-10-10.0.19045-SP0 AMD64
Ren'Py 8.4.1.25072401
Lab Rats 2 - Down to Business 2025.07-beta + VTMod4.0.42
Mon Oct 27 01:03:59 2025
 

Deane9850

Active Member
Jan 4, 2018
634
659
302
It's been quite a while since I played or updated the game, so when I did and started the game I get an error at start I never got before.

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

Could it be related to also having Kina, Kaiden and the VT mods?
thats the problem... theres should be a zip file where the exe is. delete renpy and libs folder ... replace it with the ones from zipped file. Dont overwrite, there will be leftover files that will break your game
 
4.60 star(s) 79 Votes