Aug 23, 2024
376
579
162
just restarted after i wasted more than 5 hours as boy character. now I cant get past the first night in bed as I am stuck at black screen. this game is worse than purgatory. just do renpy if u have no programming skills. fuck this dev for wasting my time
Yeah there's a lot of bug unfortunately. Try playing through MTool, or do something slightly different before the error. I had a bug at night but fixed it by walking into another room and then back, for example.
 

Rabonixxx

Member
Apr 26, 2020
331
554
258
Yeah, watching this thread I feel lucky. Never had any problem at all versions almost (hope the same in the future haha ).

I remember at 0.4 or 0.5 having the problem of the load screen, but after that all fine (I don't use Mtool, only CG archives)
 
  • Like
Reactions: AnyName'llDo

youraccount69

I'm like a karate chop
Donor
Dec 30, 2020
8,545
3,911
436
SecretDawn-0.15
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Rugerrell6

Well-Known Member
Jun 26, 2020
1,059
1,754
308
Is the 2nd mission as far as you can go in this update? Or did my game just crash or something. A message popped up and said the game still in development or something like that.
 

AnyName'llDo

Active Member
Feb 12, 2018
862
923
277
thank you . here is the save file .
Pixeldrain

when i go to changing room and cut scene starts after few dialougues game crashs .
I got the error you're getting with your save file.

The issue is in the file: Md_FaceChangeController.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;
}
Using Groomtinger's JavaScript, I was able to modify the Md_FaceMenuController.js file, and make phantomz's game work.

Phantomz, I've attached the modified JS file, so all you will need to do is extract the attached file, then find and replace your Md_FaceMenuController.js file. It is located in the game file > js folder > plugins folder. Excellent job, Groomtinger.

While I can attest that I didn't add any malware to the JS file before sending it, with that"[VIRUS]" warning, F95 seems to be serious about warning people that attached files could have viruses. Never a bad idea to scan any files you download. Just wanting to reassure you that I didn't do anything malicious. If you don't want to take the chance, you will need to follow Groomtinger's instructions with the Md_FaceMenuController.js file yourself. You can edit .js files with Notepad.
 
Last edited:

Groomtinger

Newbie
Aug 9, 2017
76
265
200
So, is anyone else stuck at the stage where every morning you wake up and get a message (paraphrasing): "Damn, going to the city was crazy. Wonder if Desmond will help us with the next Alpha mission. Maybe I should meet up privately with Chang and Kei."

I can't ever go to the next mission (just says there's no active mission). And I can't find anything else around the game to do.
 
  • Like
Reactions: mrnogood

MonoGatari

New Member
Dec 18, 2018
5
1
147
I got the error you're getting with your save file.


Using Groomtinger's JavaScript, I was able to modify the Md_FaceMenuController.js file, and make phantomz's game work.

Phantomz, I've attached the modified JS file, so all you will need to do is extract the attached file, then find and replace your Md_FaceMenuController.js file. It is located in the game file > js folder > plugins folder. Excellent job, Groomtinger.

While I can attest that I didn't add any malware to the JS file before sending it, with that"[VIRUS]" warning, F95 seems to be serious about warning people that attached files could have viruses. Never a bad idea to scan any files you download. Just wanting to reassure you that I didn't do anything malicious. If you don't want to take the chance, you will need to follow Groomtinger's instructions with the Md_FaceMenuController.js file yourself. You can edit .js files with Notepad.
man u such a lifesaver, thx for your work
 
  • Like
Reactions: AnyName'llDo

phantomz

Active Member
Feb 17, 2020
607
637
257
I got the error you're getting with your save file.


Using Groomtinger's JavaScript, I was able to modify the Md_FaceMenuController.js file, and make phantomz's game work.

Phantomz, I've attached the modified JS file, so all you will need to do is extract the attached file, then find and replace your Md_FaceMenuController.js file. It is located in the game file > js folder > plugins folder. Excellent job, Groomtinger.

While I can attest that I didn't add any malware to the JS file before sending it, with that"[VIRUS]" warning, F95 seems to be serious about warning people that attached files could have viruses. Never a bad idea to scan any files you download. Just wanting to reassure you that I didn't do anything malicious. If you don't want to take the chance, you will need to follow Groomtinger's instructions with the Md_FaceMenuController.js file yourself. You can edit .js files with Notepad.
can you upload it again . it says the archive file is corrupted or damaged !

update : Nevermind i fixed it . thanks :giggle:
 
Last edited:
  • Like
Reactions: AnyName'llDo

mrnogood

Newbie
Oct 8, 2018
17
67
23
So, is anyone else stuck at the stage where every morning you wake up and get a message (paraphrasing): "Damn, going to the city was crazy. Wonder if Desmond will help us with the next Alpha mission. Maybe I should meet up privately with Chang and Kei."

I can't ever go to the next mission (just says there's no active mission). And I can't find anything else around the game to do.
Yeah same, no idea how to proceed. Even using one of the premade save files that is right at this event and get the same error, so I feel like it has to be a bug that came with recent update. Ping me if you find a solution please lol. I did find that you can now get a note from the barrel in the underground area and show it to Chang but that's it, no matter what time I try enter mission or talk to chang/kelly, nothing happens
 

AnyName'llDo

Active Member
Feb 12, 2018
862
923
277
So, is anyone else stuck at the stage where every morning you wake up and get a message (paraphrasing): "Damn, going to the city was crazy. Wonder if Desmond will help us with the next Alpha mission. Maybe I should meet up privately with Chang and Kei."

I can't ever go to the next mission (just says there's no active mission). And I can't find anything else around the game to do.
Send me a save, and I'll see if I can figure it out for you.
 

S1cK

Member
Aug 20, 2017
220
294
222
got newest ver and game told me i reached the linear end - couldnt be bothered with random exploration, so dunno
 

J-Lo

Newbie
Apr 26, 2017
85
38
233
okay this beta mission can just fuck off, im not a fucking rocket scienctist.. why the f would you make change colour, and change spot and stuff like this... dev.. go fuck yourself.. have never seen a more retarded solution in this type of game.. im not here for the puzzle game.. deleted and downvoted
 
  • Haha
Reactions: Mashro944

Dickbrain

Newbie
Aug 26, 2025
58
50
18
quick question, "jon" will also bang other girls? or is that another totaly one sided cuck fantasy once again?
 
3.70 star(s) 25 Votes