Sneak Monkey
Active Member
- Apr 2, 2018
- 575
- 655
This appears to break the game, end up with options just being greyed out so you can't pick anything and then there's nowhere to go
I have previously added menu options to continue/skip where there's a possibility for all menu choices to be disabled, but it's possible I have missed something.This appears to break the game, end up with options just being greyed out so you can't pick anything and then there's nowhere to go
It may not even be the mod, I just reinstalled and still every option at the swimming pool is greyed out, whatever, I may just leave it at that. Weird though, I'd have expected a bug like that to affect everyone.I have previously added menu options to continue/skip where there's a possibility for all menu choices to be disabled, but it's possible I have missed something.
Do you have any examples/screenshots, just so I can track down where this is happening?
On PC/Mac, you can easily create screenshots in Ren'Py games by pressing the "s" key (unless the game dev has disabled it).
I have the same issue....It may not even be the mod, I just reinstalled and still every option at the swimming pool is greyed out, whatever, I may just leave it at that. Weird though, I'd have expected a bug like that to affect everyone.
Ahh thanks man, why there's even conditions attached in the first place is beyond me, that's just asking for bugsI have the same issue....
I have modified the file so that there are no more conditions for the buttons.
Simply copy the attached file into the folder ‘game/scripts/cap_03/’. You can continue playing for now
Remove the two "_" between 01 and Intro.When I try to copy the file, it wouldnt run, did I do something wrong?
I'm sorry, but an uncaught exception occurred.
While running game code:
File "renpy/common/00start.rpy", line 171, in script
jump expression _in_replay
ScriptError: could not find label 'cap_09_Olga_Sex'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "renpy/common/00start.rpy", line 171, in script
jump expression _in_replay
File "C:\Users\Pit\Videos\Tier B - Games\MonsterCollege-1.3.0-pc (Completed)\MonsterCollege-1.3.0-pc\renpy\ast.py", line 1705, in execute
rv = renpy.game.script.lookup(target)
File "C:\Users\Pit\Videos\Tier B - Games\MonsterCollege-1.3.0-pc (Completed)\MonsterCollege-1.3.0-pc\renpy\script.py", line 1103, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'cap_09_Olga_Sex'.
Windows-10-10.0.22000 AMD64
Ren'Py 8.3.4.24120703
1.3.0
Fri Apr 25 14:27:11 2025
The ReplayItem's referencing the label wrongly:Works fine besides the issue Hordragg mentioned before and a gallery entry/label that doesn't unlock when you get it while doing Olga ending and is cap_09_Olga_Sex giving a traceback error if I unlock it with the mod and try to play it and says "could not find cap_09_Olga_sex". With URM I checked and the label is there so no idea what is wrong with it, maybe something in the script as mentioned in the traceback, not a code expert hehe.
A good enough game that could be better if wasn't rushed in the end and with a bit more polish in some parts on the plot and visually wise mostly, Tier B close to A if wasn't rushed, kind of wasted potential. Follow up is sandbox so no thanks hehe.
Code:I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00start.rpy", line 171, in script jump expression _in_replay ScriptError: could not find label 'cap_09_Olga_Sex'. -- Full Traceback ------------------------------------------------------------ Full traceback: File "renpy/common/00start.rpy", line 171, in script jump expression _in_replay File "C:\Users\Pit\Videos\Tier B - Games\MonsterCollege-1.3.0-pc (Completed)\MonsterCollege-1.3.0-pc\renpy\ast.py", line 1705, in execute rv = renpy.game.script.lookup(target) File "C:\Users\Pit\Videos\Tier B - Games\MonsterCollege-1.3.0-pc (Completed)\MonsterCollege-1.3.0-pc\renpy\script.py", line 1103, in lookup raise ScriptError("could not find label '%s'." % str(original)) ScriptError: could not find label 'cap_09_Olga_Sex'. Windows-10-10.0.22000 AMD64 Ren'Py 8.3.4.24120703 1.3.0 Fri Apr 25 14:27:11 2025
# script/cap_09/cap_09_olga.rpy
142: label cap_09_Olga_sex:
# script/replay_setup.rpy
79: Replay_items.append(ReplayItem(["replay44"], "cap_09_Olga_Sex", "{color=#000}{/color}"))
Thanks. I see it now. Wasn't sure how to detect it, rarely I open a rpy file and should have done it (with notepad right? opens rpy files just not rpyc ones). Is it possible to fix it with the notepad by changing to the exact label?The ReplayItem's referencing the label wrongly:
I'll pass it on.Python:# script/cap_09/cap_09_olga.rpy 142: label cap_09_Olga_sex: # script/replay_setup.rpy 79: Replay_items.append(ReplayItem(["replay44"], "cap_09_Olga_Sex", "{color=#000}{/color}"))