Mod Cheat Mod Ren'Py Monster College Multi-mod [v1.3.0] [JGNeon]

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
 

JGNeon

Active Member
Modder
Feb 24, 2021
886
5,055
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.

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).
 

Sneak Monkey

Active Member
Apr 2, 2018
575
655
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).
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.
 

Linxx

New Member
Jul 10, 2020
7
1
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 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
 

Sneak Monkey

Active Member
Apr 2, 2018
575
655
I 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
Ahh thanks man, why there's even conditions attached in the first place is beyond me, that's just asking for bugs
 

Hordragg

Lesser-Known Mesmer
Donor
Compressor
Apr 2, 2019
3,041
10,836
JGNeon, you may want to revisit cap_08_sc_15 - Grace Lago.rpy as the mod's currently following positive relationship changes only, eventually leading to people swearing their undying love to Grace, ending any other route they're possibly on (1, 2).
 
  • Like
Reactions: pitao

Envy*

Well-Known Member
Apr 10, 2022
1,828
2,467
It's true that Grace is cool, but Dragomira.... :sneaky:

That's why Monster College is over for me, I have no reason to see the other endings.
 

pitao

Active Member
May 18, 2023
955
1,165
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
 
Last edited:

Hordragg

Lesser-Known Mesmer
Donor
Compressor
Apr 2, 2019
3,041
10,836
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
The ReplayItem's referencing the label wrongly:
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}"))
I'll pass it on.
 
  • Like
Reactions: pitao

pitao

Active Member
May 18, 2023
955
1,165
The ReplayItem's referencing the label wrongly:
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}"))
I'll pass it on.
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?

Edit: Nevermind, I changed it from "S" to "s" with notepad and works now. Double thanks.
 
Last edited: