Kalebon

Newbie
Jul 16, 2017
16
3
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 8311, in script call
    call screen main_choice_display([people_list,actions_list])
  File "game/crises.rpy", line 2657, in script
    call screen interview_ui([the_daugther]) #Hire her or reject her.
  File "renpy/common/000statements.rpy", line 514, in execute_call_screen
    args, kwargs = a.evaluate()
  File "game/crises.rpy", line 2657, in <module>
    call screen interview_ui([the_daugther]) #Hire her or reject her.
NameError: name 'the_daugther' is not defined

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

Full traceback:
  File "game/script.rpy", line 8311, in script call
    call screen main_choice_display([people_list,actions_list])
  File "game/crises.rpy", line 2657, in script
    call screen interview_ui([the_daugther]) #Hire her or reject her.
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 1828, in execute
    self.call("execute")
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 1816, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\statements.py", line 177, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 514, in execute_call_screen
    args, kwargs = a.evaluate()
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 184, in evaluate
    args.append(renpy.python.py_eval(v, locals=scope))
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\python.py", line 1943, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\python.py", line 1936, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/crises.rpy", line 2657, in <module>
    call screen interview_ui([the_daugther]) #Hire her or reject her.
NameError: name 'the_daugther' is not defined

Windows-8-6.2.9200
Ren'Py 7.0.0.196
Lab Rats 2 - Down to Business v0.21.0
Sun Oct 13 03:01:50 2019
This bug happens when Im trying to call daughter hiring work event through console because cant seem to trigger it normally. It does not allow you to hire a daughter, only tto reject when I click ignore. Anything that can be done about it?
SO how does one force events with console then?
 

VonLost

New Member
Apr 22, 2019
7
2
Over in the modding thread there were a couple typos mentioned:

crises.rpy in 21.1 (parameter the_daugther instead of the_daughter)



another little typo which crashes the game. Vren missed an "r" in su(r)prised_exclaim. So cougars don't like the tax crisis


Both found by other folks, just remember reading them there and fixing my copy.
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,404
5,625
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 8311, in script call
    call screen main_choice_display([people_list,actions_list])
  File "game/crises.rpy", line 2657, in script
    call screen interview_ui([the_daugther]) #Hire her or reject her.
  File "renpy/common/000statements.rpy", line 514, in execute_call_screen
    args, kwargs = a.evaluate()
  File "game/crises.rpy", line 2657, in <module>
    call screen interview_ui([the_daugther]) #Hire her or reject her.
NameError: name 'the_daugther' is not defined

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

Full traceback:
  File "game/script.rpy", line 8311, in script call
    call screen main_choice_display([people_list,actions_list])
  File "game/crises.rpy", line 2657, in script
    call screen interview_ui([the_daugther]) #Hire her or reject her.
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 1828, in execute
    self.call("execute")
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 1816, in call
    return renpy.statements.call(method, parsed, *args, **kwargs)
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\statements.py", line 177, in call
    return method(parsed, *args, **kwargs)
  File "renpy/common/000statements.rpy", line 514, in execute_call_screen
    args, kwargs = a.evaluate()
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\ast.py", line 184, in evaluate
    args.append(renpy.python.py_eval(v, locals=scope))
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\python.py", line 1943, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\Mega\Lab_Rats_2-v0.21.0-pc\renpy\python.py", line 1936, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/crises.rpy", line 2657, in <module>
    call screen interview_ui([the_daugther]) #Hire her or reject her.
NameError: name 'the_daugther' is not defined

Windows-8-6.2.9200
Ren'Py 7.0.0.196
Lab Rats 2 - Down to Business v0.21.0
Sun Oct 13 03:01:50 2019
This bug happens when Im trying to call daughter hiring work event through console because cant seem to trigger it normally. It does not allow you to hire a daughter, only tto reject when I click ignore. Anything that can be done about it?
Hi,

thanks for the report, however, I cannot load the save (gives me error immediately). Do you have a mod installed? Also, I did not encounter the sister event yet (you say it only triggers via console), so I fear I cannot fix that anyway.
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,404
5,625
Over in the modding thread there were a couple typos mentioned:

crises.rpy in 21.1 (parameter the_daugther instead of the_daughter)



another little typo which crashes the game. Vren missed an "r" in su(r)prised_exclaim. So cougars don't like the tax crisis


Both found by other folks, just remember reading them there and fixing my copy.
OK, I fixed the daugther bug (not yet published), but I have difficulties to understand how that su(r)prised typo should crash the game. Vren has misspelled that consistently throughout all the scripts, so since the game engine does not check the oxford dictionary at runtime, this should still work. Do you have a savegame that is crashing?
 

DaMatt

Member
Feb 6, 2018
152
83
OK, I fixed the daugther bug (not yet published), but I have difficulties to understand how that su(r)prised typo should crash the game. Vren has misspelled that consistently throughout all the scripts, so since the game engine does not check the oxford dictionary at runtime, this should still work. Do you have a savegame that is crashing?
It was only crushing cougar personalities. This personality is part of the mod, so it does not influence the normal game. It is already fixed in the mod.

Cheers
Matt
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,404
5,625
I updated the fix with a new version v02. If you installed the first version, you should download it and install again.

Vren should really work on his spelling...
 
  • Like
Reactions: Heml0ck

mochamas23

Active Member
Apr 5, 2019
773
172
I need tips creat serum good effect and what is the use of hidden effects, when conducting serum studies why are the hidden effects diminished. How get slut more beacause after slut 25 not raise and i inject serum but after day normal again ,,the game can't pregnet girl?,, please answer my quest
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,404
5,625
I need tips creat serum good effect and what is the use of hidden effects, when conducting serum studies why are the hidden effects diminished. How get slut more beacause after slut 25 not raise and i inject serum but after day normal again ,,the game can't pregnet girl?,, please answer my quest
You need to ask Stephanie how to "advance serum research". This you need to do several times, each time providing you with new serum traits to research. It will also unlock Nora, which will provide additional traits, and quests, to get more advanced traits eventually.

It will take a while, though. You will have to examine test subjects (i.e. girls that have high values for love, suggestability, obedience etc.). So, basically, you need one girl to be corrupted already. Also, there are most useful traits when examining "special" girls like mom, sis, Steph, aunt, cousin or Nora.

Some traits are not worth using, especially not on a regular basis. Those are traits that reduce effects irreversibly. On the other hand, some traits are extremely expensive to research (e.g. Nora's traits). To research those, you need to make a serum prototype (possibly having negative side effects), give that to test subjects and talk to them (flirt, smalltalk etc.). This will increase research speed significantly.
 

mochamas23

Active Member
Apr 5, 2019
773
172
You need to ask Stephanie how to "advance serum research". This you need to do several times, each time providing you with new serum traits to research. It will also unlock Nora, which will provide additional traits, and quests, to get more advanced traits eventually.

It will take a while, though. You will have to examine test subjects (i.e. girls that have high values for love, suggestability, obedience etc.). So, basically, you need one girl to be corrupted already. Also, there are most useful traits when examining "special" girls like mom, sis, Steph, aunt, cousin or Nora.

Some traits are not worth using, especially not on a regular basis. Those are traits that reduce effects irreversibly. On the other hand, some traits are extremely expensive to research (e.g. Nora's traits). To research those, you need to make a serum prototype (possibly having negative side effects), give that to test subjects and talk to them (flirt, smalltalk etc.). This will increase research speed significantly.
Oh thank,,,can max serum level research?
 
3.40 star(s) 127 Votes