- Jul 18, 2024
- 38
- 106
Hi CbunnySwtor following is the error msg I am getting when starting a new game just after the initial intro.
I'm sorry, but an uncaught exception occurred.
While running game code:
File "renpy/common/00gamemenu.rpy", line 170, in script
$ ui.interact()
File "renpy/common/00gamemenu.rpy", line 170, in <module>
$ ui.interact()
File "renpy/common/00action_data.rpy", line 234, in get_selected
rv = _get_field(self.object, self.field, self.kind)
File "renpy/common/00action_data.rpy", line 39, in _get_field
raise NameError("The {} {} does not exist.".format(kind, name))
NameError: The variable TV_ON does not exist.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "renpy/common/00gamemenu.rpy", line 170, in script
$ ui.interact()
File "renpy/ast.py", line 1138, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "renpy/python.py", line 1122, in py_exec_bytecode
exec(bytecode, globals, locals)
File "renpy/common/00gamemenu.rpy", line 170, in <module>
$ ui.interact()
File "renpy/ui.py", line 299, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "renpy/display/core.py", line 3579, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, pause_modal=pause_modal, **kwargs) # type: ignore
File "renpy/display/core.py", line 4052, in interact_core
root_widget.visit_all(lambda d : d.per_interact())
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/screen.py", line 481, in visit_all
self.child.visit_all(callback, seen=None)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 681, in visit_all
d.visit_all(callback, seen)
File "renpy/display/core.py", line 683, in visit_all
callback(self)
File "renpy/display/core.py", line 4052, in <lambda>
root_widget.visit_all(lambda d : d.per_interact())
File "renpy/display/behavior.py", line 1027, in per_interact
if self.is_selected():
File "renpy/display/behavior.py", line 1015, in is_selected
return is_selected(self.action)
File "renpy/display/behavior.py", line 444, in is_selected
return any(is_selected(i) for i in action)
File "renpy/display/behavior.py", line 444, in <genexpr>
return any(is_selected(i) for i in action)
File "renpy/display/behavior.py", line 447, in is_selected
return action.get_selected()
File "renpy/common/00action_data.rpy", line 234, in get_selected
rv = _get_field(self.object, self.field, self.kind)
File "renpy/common/00action_data.rpy", line 39, in _get_field
raise NameError("The {} {} does not exist.".format(kind, name))
NameError: The variable TV_ON does not exist.
Fixed. You can either download it again or change the following in the .rpy file:
Code:
config.console = True
config.developer = True
TV_ON = False #ADD THIS LINE
config.overlay_screens.append("quick_cheats_menu")