Housemouse Bond

New Member
Jul 21, 2025
1
0
20
"-> maybe more to do in City, or check sauna""Jon's job"


Only sauna I've been able to get is:
Eva makes a comment about the smell in there hinting at sex.

Jon just mops the cumstains and gets paid in the club.

I can't get either character to use the sauna. No clicky spots.

Same with the city scenes. Both have just a hint of what is down the road.

Unless I'm missing something.

"-> check out lower dungeon"
WTF does the small key unlock. Is there a lower dungeon after the dungeon? Or is this just bait for a future update?
EDIT: stand on the lower left map corner dungeon grate past the crystal bath and use key in inventory.
 
Last edited:

Groomtinger

Newbie
Aug 9, 2017
76
265
200
I got an error when you get on the train after being selected to join the Crucible. If you look at Eva, it throws an error. 1759159776063.png

EDIT: After some investigating, I've found that this error occurs when you look at someone ONLY when your "Text display speed" is set to 100%, because it sends a RPG Maker Variable \> which basically means "instant text", but that's not valid JSON. So put your read speed at 90% to never have to worry about this particular bug, or edit Md_AdvancedMessageSystem.js to ignore empty messages, like that.

Other Bug(s):

- After completing your initial test after getting off the train, the nurse walks you to your room. However, if you decide to explore before entering your room, you can get SOFT LOCKED in the Bathroom. There's only one door to exit, but you can't interact with doors until you "investigate your Link", but there's no entries or anything until you've gone into your room. I assume there are probably other SOFT LOCK areas besides the Bathroom, but that's where I noticed the issue.
 
Last edited:
  • Like
Reactions: AnyName'llDo

phantomz

Active Member
Feb 17, 2020
607
637
257
I got an error when you get on the train after being selected to join the Crucible. If you look at Eva, it throws an error. View attachment 5295548

EDIT: After some investigating, I've found that this error occurs when you look at someone ONLY when your "Text display speed" is set to 100%, because it sends a RPG Maker Variable \> which basically means "instant text", but that's not valid JSON. So put your read speed at 90% to never have to worry about this particular bug, or edit Md_AdvancedMessageSystem.js to ignore empty messages, like that.

Other Bug(s):

- After completing your initial test after getting off the train, the nurse walks you to your room. However, if you decide to explore before entering your room, you can get SOFT LOCKED in the Bathroom. There's only one door to exit, but you can't interact with doors until you "investigate your Link", but there's no entries or anything until you've gone into your room. I assume there are probably other SOFT LOCK areas besides the Bathroom, but that's where I noticed the issue.
by any chance do you know what is the reason for this error . i got this error in cut scene and cant proceed ! :rolleyes:
sd2.jpg
 

Groomtinger

Newbie
Aug 9, 2017
76
265
200
by any chance do you know what is the reason for this error . i got this error in cut scene and cant proceed ! :rolleyes:
View attachment 5296546
The issue is in the file: Md_FaceMenuController.js

There are calls to a method: setFallbackId

However, this method does not exist.

You have a few options:

1: Add a method near the top which shares the name, but doesn't do anything:

function setFallbackId() {}

2: Add a method near the top which shares the name, and just literally resets the interactableEventId value to 0.

function setFallbackId(){ Misdynamics.interactableEventId = 0; }

3: Add a method near the top which shares the name, and does my best approximation of what I THINK the plugin author was trying to do. But I am not at that part of the game and cannot confirm it works.

JavaScript:
function setFallbackId() {
  const lastKey = (map) => {
    let k = 0;
    for (const [id] of map) k = id | 0;
    return k;
  };

  let id = 0;
  if (lookData.size)      id = lastKey(lookData);
  else if (talkData.size) id = lastKey(talkData);
  else if (actData.size)  id = lastKey(actData);

  Misdynamics.interactableEventId = id | 0;
}
 
Last edited:

S1cK

Member
Aug 20, 2017
220
294
222
just restarted after i wasted more than 5 hours as boy character. now I cant get past the FIRST night in bed as girl bc I am STUCK at black screen. Again, FIRST fucking night and gamebreaking bug already! this game is worse than purgatory. just do renpy if u have no programming skills. fuck this dev for wasting my time.
EDIT: for any poor soul like me: just use a premade save file... I used the one in slot 4.. There is a readme in the game folder telling you what each save is
 
Last edited:
  • Like
  • Haha
Reactions: dogerts and elbro
3.70 star(s) 25 Votes