SaintoSR2
Newbie
- Oct 22, 2023
- 26
- 16
getting this error anyone know what i can do to fix it? cant seem to progress otherwise
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/scripts/home.rpy", line 150, in script
call screen nav_menu
ScriptError: could not find label 'visit_ain'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "L:\Downloads\DesertStalker-0.18.2-pc\DesertStalker-0.18.2-pc\renpy\bootstrap.py", line 359, in bootstrap
renpy.main.main()
File "L:\Downloads\DesertStalker-0.18.2-pc\DesertStalker-0.18.2-pc\renpy\main.py", line 652, in main
run(restart)
File "L:\Downloads\DesertStalker-0.18.2-pc\DesertStalker-0.18.2-pc\renpy\main.py", line 148, in run
renpy.execution.run_context(True)
File "L:\Downloads\DesertStalker-0.18.2-pc\DesertStalker-0.18.2-pc\renpy\execution.py", line 958, in run_context
context.run()
File "game/scripts/home.rpy", line 150, in script
call screen nav_menu
File "L:\Downloads\DesertStalker-0.18.2-pc\DesertStalker-0.18.2-pc\renpy\script.py", line 1103, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'visit_ain'.
figured it out
for anyone else getting this error:
go to game/scripts/home.rpy
go to line 415 and change
label visitain
to
label visit_ain
fixed it for me