3.10 star(s) 11 Votes

weishiau

Newbie
Jan 17, 2019
76
46
183
I wish there was some in-game hints or guide.. Would you mind putting the list of your unlocked ones ? maybe we can make a list ourselves
I directly downloaded a fully unlocked skill save file provided by someone else here.
The game is quite boring; it's just about constantly completing objectives to earn money and experience points.

To unlock the gallery, all you need to do is try taking photos from different angles while the female character is having sex until she pops up a "Unlock new image" message.

The same sex scene might have two or three different gallery images.
螢幕擷取畫面 2025-12-09 070530.png

*edit:
At first, it felt like a stealth investigation, but after playing for a while and discovering that everyone's schedule was directly listed on the phone,
all that remained was to constantly complete missions, collect money, and buy skills.

It's a good hint, no doubt, but there's an elderly person in a wheelchair in the third house who isn't mentioned in the hint.
 

NotEnoughHats

Member
Mar 27, 2019
173
101
202
The game crashes every day at 20:00, every time I open my phone and if I stand in my house too long. This is with the Hotfix version lol

Windowed Mode: Crash,
Lowered Resolution: Crash
Hit by a car: Crash (no pun intended)


Windows 11
RTX 5070
 
Last edited:
May 19, 2022
209
148
100
idk why people bother with CE when you can use unity explorer + melon loader in basically all unity games but also just throwing it out there that this is a mono game meaning you can just open the dlls with dnspy and directly edit basically anything you want without all the silly guess work with CE


if anyone wants to mess around with directly editing your save locate this class and then

Code:
namespace Game.Core
{
    // Token: 0x0200029E RID: 670
    public static class EncryptionHelper
    {
        // Token: 0x0600170C RID: 5900 RVA: 0x0004BCA0 File Offset: 0x00049EA0
        public static string Encrypt(string clearText)
        {
            string text = "What a fuck are you doing here?";
            byte[] bytes = Encoding.Unicode.GetBytes(clearText);
            using (Aes aes = Aes.Create())
            {
                Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(text, new byte[]
                {
                    73, 118, 97, 110, 32, 77, 101, 100, 118, 101,
                    100, 101, 118
                });
                aes.Key = rfc2898DeriveBytes.GetBytes(32);
                aes.IV = rfc2898DeriveBytes.GetBytes(16);
                using (MemoryStream memoryStream = new MemoryStream())
                {
                    using (CryptoStream cryptoStream = new CryptoStream(memoryStream, aes.CreateEncryptor(), CryptoStreamMode.Write))
                    {
                        cryptoStream.Write(bytes, 0, bytes.Length);
                        cryptoStream.Close();
                    }
                    clearText = Convert.ToBase64String(memoryStream.ToArray());
                }
            }
            return clearText;
        }

        // Token: 0x0600170D RID: 5901 RVA: 0x0004BD84 File Offset: 0x00049F84
        public static string Decrypt(string cipherText)
        {
            string text = "What a fuck are you doing here?";
            cipherText = cipherText.Replace(" ", "+");
            byte[] array = Convert.FromBase64String(cipherText);
            using (Aes aes = Aes.Create())
            {
                Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes(text, new byte[]
                {
                    73, 118, 97, 110, 32, 77, 101, 100, 118, 101,
                    100, 101, 118
                });
                aes.Key = rfc2898DeriveBytes.GetBytes(32);
                aes.IV = rfc2898DeriveBytes.GetBytes(16);
                using (MemoryStream memoryStream = new MemoryStream())
                {
                    using (CryptoStream cryptoStream = new CryptoStream(memoryStream, aes.CreateDecryptor(), CryptoStreamMode.Write))
                    {
                        cryptoStream.Write(array, 0, array.Length);
                        cryptoStream.Close();
                    }
                    cipherText = Encoding.Unicode.GetString(memoryStream.ToArray());
                }
            }
            return cipherText;
        }
    }
}
change to this and recompile and save

Code:
namespace Game.Core
{
    // Token: 0x0200029E RID: 670
    public static class EncryptionHelper
    {

            return clearText;
        }

        // Token: 0x0600170D RID: 5901 RVA: 0x0004BD84 File Offset: 0x00049F84
        public static string Decrypt(string cipherText)
        {
           
            return cipherText;
        }
    }
}
you can now open your save file and directly edit in plain text like a normal json
 

r69silly

Member
Nov 21, 2024
373
240
121
The game is crashing because of those Task Slots,
when we have more than 15-25 tasks then game is freezing! (not sure how much!?)
So, I just delete any unused Tasks every time and Decline any Hard/Boring Current Quests.
I have only 3 Tasks on this menu maximum, and deleting any unused tasks every time on my PC.

PS That's stupid but works :'D In waiting for this bug fix.
menuX.png
 
Last edited:

Darklord_1965

Member
May 12, 2020
361
668
268
Mostly every sex interaction is using trap/sleeping, but i found one with camila in the red room, if u use the sleeping sprey with her husband before he goes to the red room, you can fuck her there and its actually the best sex i saw so far, guessing if there others scenes like that
No clue how to use the sleeping spray. Tried on all the men and it doesn't do a damn thing when I use it. Do you have to hide in a closet and spray him as he walks by? Also, does anyone have any idea how to fill the 5 stars below their names?
 
  • Like
Reactions: l0velyboy

breathe

Member
Nov 4, 2020
317
380
208
No clue how to use the sleeping spray. Tried on all the men and it doesn't do a damn thing when I use it. Do you have to hide in a closet and spray him as he walks by? Also, does anyone have any idea how to fill the 5 stars below their names?
Approach the person from the back. spray the sleeping spray. above their head ZZZ will apear and they will go to bed to sleep. then use love spray and have sex.
 
  • Like
Reactions: Darklord_1965
3.10 star(s) 11 Votes