cxx
Message Maestro
- Nov 14, 2017
- 77,495
- 40,098
- 1,519
also if you don't act like an idiot when mon gets assaulted.Thank you for your answer.
also if you don't act like an idiot when mon gets assaulted.Thank you for your answer.
LMAO!!!!!!!!!!!!!Waiting for a hero to transfer the 4K images collection(worth $40) from Patreon.![]()
Is the ‘landlady’ also part of the harem?! What a surprise! Of course I have to protect her!also if you don't act like an idiot when mon gets assaulted.
1. she's a bitch (you'll find out later why).Is the ‘landlady’ also part of the harem?! What a surprise! Of course I have to protect her!
wrong game/thread boy.is MC sharing sis with that black dude in recent updates ?
thats True Dude!LMAO!!!!!!!!!!!!!
this game ain't even worth 1/10 of that.
Bitch? Why? Can you elaborate?Is she a slut who can have sex with anyone? Then this game is not for me.1. she's a bitch (you'll find out later why).
2. she ain't landlady, she's mc "loving" mother.
3. cousins ain't her kids nor sisters to each other nor cousins to mc.
wrong game/thread boy.
no she's bitch as making mc's life miserable if mc gives her gun back to her and if starts bad grades path.Bitch? Why? Can you elaborate?Is she a slut who can have sex with anyone? Then this game is not for me.
it's not triggered (dev fubared), just goto meet monque and .......................Hi folks,
It seems the Key part 5 is not triggering on my side even if I had the Key part 4 done (talk with Sandra). By not triggering, i mean, i never receive the SMS.
Any idea on what could explain that? Am I missing other steps/quests related to this trigger? Any link to Monique attributes?
Cheers
Thanks for your feedback and That's what i tried meeting her at the clinic but i only have the Hey Monique option which does not launch the key part 5.it's not triggered (dev fubared), just goto meet monque and .......................
Is it the problem described in the post I quoted here? If so, you can find a workaround in this thread (doing what my earlier post says).Thanks for your feedback and That's what i tried meeting her at the clinic but i only have the Hey Monique option which does not launch the key part 5.
edit: i was still on the alpha version. After installing the latest version of the game, the SMS arrives ;-)
Talked about many times already in this thread. Search for the word label and look for a post from me for a workaround.I'm sorry, but an uncaught exception occurred.
While running game code:
ScriptError: could not find label 'talk_with_elizabeth_clinique_evening_theKey_part2'.
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "D:\Mega Downloads\IndecentDesires-theGamev029-pc\renpy\bootstrap.py", line 313, in bootstrap
renpy.main.main()
File "D:\Mega Downloads\IndecentDesires-theGamev029-pc\renpy\main.py", line 524, in main
run(restart)
File "D:\Mega Downloads\IndecentDesires-theGamev029-pc\renpy\main.py", line 139, in run
renpy.execution.run_context(True)
File "D:\Mega Downloads\IndecentDesires-theGamev029-pc\renpy\execution.py", line 892, in run_context
context.run()
File "rooms.rpyc", line 318, in script
File "D:\Mega Downloads\IndecentDesires-theGamev029-pc\renpy\script.py", line 886, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'talk_with_elizabeth_clinique_evening_theKey_part2'.
Windows-8-6.2.9200
Ren'Py 7.2.1.457
Indecent Desires theGamev029
Tue Sep 30 05:25:44 2025
Getting This error when trying to visit the clinique at evening
I mean, it's only as stable as coding remains purely Ren'Py and not having Python which has mistakes added to it.renpy is stable but somehow vilelab manages to break it.
yes, as far as I remember it was simply a typo caused by dev when renaming some labels.I mean, it's only as stable as coding remains purely Ren'Py and not having Python which has mistakes added to it.
I have a fix (well, technically, a workaround) for this error. If you're getting a crash screen saying the game "could not find label 'talk_with_elizabeth_clinique_evening_theKey_part2'," you can just drop this tiny RPY file into your main \game folder for v0.29. Basically, things like variables and labels are case-sensitive in Ren'Py (as they are in Python, the primary language off of which Ren'Py is based). This means thatsleepingandSleepingare seen as two different items (two different variables, two different blocks of code, or whatever).
VileLab (the developer) made a typo in the label name for the next scene. The game's looking for alabelcalledtalk_with_elizabeth_clinique_evening_theKey_part2, but the actual label for the code block he wants to send you to doesn't have a capital K in its name. The name for the block of code should betalk_with_elizabeth_clinique_evening_thekey_part2instead. Here is the entire content of my patch to deal with the typo causing the error:
This code lets the game jump to what it thinks it wants (with the capital letter), which then sends the player to the correct place in the code by using its actual name.Python:label talk_with_elizabeth_clinique_evening_theKey_part2: jump talk_with_elizabeth_clinique_evening_thekey_part2
Yep, although that's not actually "breaking" Ren'Py. That's just a typo with a capital in the wrong place. Since Ren'Py is basically Python but with custom commands, etc., and since Python is case-sensitive, this can happen to anyone.yes, as far as I remember it was simply a typo caused by dev when renaming some labels.
Easy to fix by editing the rpy-file.