3.60 star(s) 40 Votes

Kayt90

New Member
May 11, 2020
4
1
Just upload your saved file. But before that, try using the sofa to rest for 4 hours and check if the 'rest until 6 PM' text button appears.
I rested on the sofa for 4 hours
The option after this is "rest until 6pm". Once I choose this option, the screen goes blank and the appears to freeze, as I cannot select "back" or "save".
 

scvdmg

New Member
May 30, 2023
6
4
Hey Binary guy, I notice a gallery on the subscribestar (my sub just run out waa) is that due in the next major update or can we expect it sooner?
 

FRPorn69

New Member
Oct 14, 2020
3
1
For anyone having the bug where you can't interact with Molly but you have to speak to her at the morning:
I debugged it and found out that this happens because a variable mollysnothome is set to True when Molly leaves early in the morning at 4am but is only set to False if you successfully lockpick Nicole's door when she asks you for help. If you fail the mini-game the variable mollysnothome remains True and the code for the buggy morning when you have to "Talk to Molly" checks if mollysnothome is False and only then gives you an option to talk to her. The solutions is to just return and complete the mini-game successfully.
 
  • Red Heart
Reactions: binaryguy

chukkie

New Member
Jul 29, 2019
2
0
Found a bug related to the story stalling and no hints after first cam event. The issue is that the variable dpart5ldval is incremented from 13 to 14 during the cam event, locking out conversation option that moves the story forward.

To check if this is your issue, look at the hints list after pickup by Tony for the cam scene. If you see the hint "talk to molly before she goes to bed", which then disappears after the cam event is over, then this fix should work.

To patch this you need to use the renpy console (developer mode is locked out). The console is not useful for debugging or looking for spoilers, but is very handy for patching or tweaking in cases like this.

To enable the console, create a file 00console.rpy in the /game folder with the contents below:
Code:
init:
    $ config.console = True
Next load a save after the cam event, and press SHIFT+O to open the renpy console, and type:
Code:
dpart5ldval = 13
Now talk to molly again between 6pm and 9pm and choose the new conversation option to move the story forward.
 
3.60 star(s) 40 Votes