|
Post by hewhohasnopi on Oct 18, 2022 18:55:28 GMT -8
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script.rpy", line 20687, in script
jump censorscene1
ScriptError: could not find label 'censorscene1'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/script.rpy", line 20687, in script
jump censorscene1
File "C:\Program Files (x86)\Steam\steamapps\common\Sunrider\renpy\ast.py", line 1480, in execute
rv = renpy.game.script.lookup(target)
File "C:\Program Files (x86)\Steam\steamapps\common\Sunrider\renpy\script.py", line 602, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'censorscene1'.
Windows-8-6.2.9200
Ren'Py 6.99.3.404
Sunrider Mask of Arcadius Beta 7.2
|
|
|
Post by Sorzo on Oct 19, 2022 14:30:16 GMT -8
Do you have the 18+ Restoration Patch installed for MoA?
In the main script file, immediately following Maray's line is the following:
if CENSOR == False: jump censorscene1
So if the CENSOR variable is set to false, the game should go to the censorscene1 block, which is inside of censoreddata.rpy in the Game folder. That rpy file looks like it also sets CENSOR to false to begin with, so you shouldn't be getting that jump call unless the file is present.
If you want the 18+ scene, make sure that censoreddata.rpy is still in the proper directory. Otherwise make sure that CENSOR = True is present at the bottom of Options.rpy.
|
|
|
Post by hewhohasnopi on Oct 19, 2022 20:15:15 GMT -8
i might have had an old one that did not have MoA on it.
|
|