mcmania

Member
Dec 4, 2016
125
903
Again, I am on mobile, so I am unsure of how to do that console thing, but I'm typing it into the 'type it here' bar
View attachment 4455956
And when I do it says wrong
It will not work without overriding the hashStr function in the first place. "start" is unknown prior its injection via the console. It can only be done in the developer console but I don't think it is doable on mobile
 

smaugm

Formerly 'smaugmr'
Jan 1, 2025
9
8
For 1.21dlc
Code:
Patron: ዂl7YpwG
SecretCode: ርIxpD0nNIG
KeyGen:
Code:
        private static KeyValuePair<int, char> GetHashChar(Random random, int hash)
        {
            var chars = new List<KeyValuePair<int, char>>();
            for (var i = 0; i < int.MaxValue / 2; i++)
            {
                var val = -(int)(unchecked(((i << 5) - i)) - hash);
                if ((val < 48 || val > 122) || (val > 57 && val < 65) || (val > 90 && val < 97)) continue;
                chars.Add(new KeyValuePair<int, char>(i, (char)val));
                if (chars.Count > 3) break;
            }
            return chars[random.Next(0, chars.Count)];
        }

        private static string GetPasswordForHash(int hash)
        {
            var random = new Random();

            var hashChar = GetHashChar(random, hash);
            var password = hashChar.Value.ToString();

            while (hashChar.Key < 48 || hashChar.Key > 0xFFFF)
            {
                hashChar = GetHashChar(random, hashChar.Key);
                password = hashChar.Value + password;
            }

            return (char)hashChar.Key + password;
        }
 

BigDaddyBlade

Newbie
Sep 27, 2022
37
23
It will not work without overriding the hashStr function in the first place. "start" is unknown prior its injection via the console. It can only be done in the developer console but I don't think it is doable on mobile
Let's say I managed to do all that, isn't there a secret new intro? How do I do that
 

Jay2000

New Member
May 11, 2023
14
38
Cheats v1.20
Hey, everyone. Here is a modded version for this game I made, where you can use cheats using the sidebar menu. There are also new features like stable lust for the other family members and infinite energy, etc.

Installation:
Simply download the game at the front page.
Download this index.zip and extract.
Replace the index.html from the main game with this one.

If you have any ideas that you want to see added to this mod let me know.
Enjoy.

1737248193730.png
 
Last edited:

BigDaddyBlade

Newbie
Sep 27, 2022
37
23
Cheats v1.20
Hey, everyone. Here is a modded version for this game I made, where you can use cheats using the sidebar menu. There are also new features like stable lust for the other family members and infinite energy, etc.

Installation:
Simply download the game at the front page.
Download this index.zip and extract.
Replace the index.html from the main game with this one.

If you have any ideas that you want to see added to this mod let me know.
Enjoy.

View attachment 4459036
The images aren't loading
 

hedgehog4216

Member
Jun 25, 2022
121
103
Cheats v1.20
Hey, everyone. Here is a modded version for this game I made, where you can use cheats using the sidebar menu. There are also new features like stable lust for the other family members and infinite energy, etc.

Installation:
Simply download the game at the front page.
Download this index.zip and extract.
Replace the index.html from the main game with this one.

If you have any ideas that you want to see added to this mod let me know.
Enjoy.

View attachment 4459036
update for 1.21 using the online game link?
 

NSkell

Newbie
Jan 6, 2021
24
27
I seem to be getting an error when entering parents room:

Error: <<goto>>: passage "Father Caught" does not exist
You feel strange... (TOO HORNY)
health -5
 

DandyMe

Member
Mar 27, 2024
418
309
I seem to be getting an error when entering parents room:

Error: <<goto>>: passage "Father Caught" does not exist
You feel strange... (TOO HORNY)
health -5
Happened to me also after completing all the quest..
Forgot to make a save!
 
  • Like
Reactions: NSkell
Jul 31, 2018
86
25
Do you guys have saves to scenes i could use or maybe a guide? i am only interested in Sis-dad scenes and uncle-anyone else scenes. i played for 2 hours, played around with the cheats but the only dad-sis scene i've seen is the "sis seduces dad" scene where they get caught by the mc and the mc either joins or keeps the secret, tho maybe cheating the stats broke the game but please let me know.
 

DandyMe

Member
Mar 27, 2024
418
309
Do you guys have saves to scenes i could use or maybe a guide? i am only interested in Sis-dad scenes and uncle-anyone else scenes. i played for 2 hours, played around with the cheats but the only dad-sis scene i've seen is the "sis seduces dad" scene where they get caught by the mc and the mc either joins or keeps the secret, tho maybe cheating the stats broke the game but please let me know.
There's also one with the cousin and dad.. a bit tricky cause the cousin have to loose at the game in the sister room..
Some RNG while you caught them in sister room.. i recall a spanking out of the 2 while fucking..

Edit : there's also the Father Revenge, but if i recall good is just a clip with the daughter of the Banker, as the the one with the Banker and the daughter if you go to third date..
 
Last edited:
  • Like
Reactions: UglyBastardTag

lheat

Newbie
Jul 23, 2019
82
24
Can anyone help with the mom quest. I can't seem to activate it. Also, nothing seems to happen after I gave the mom up to the gang in the outskirts. Is this a repeatable event? Screenshot 2025-02-12 230054.png
 

DandyMe

Member
Mar 27, 2024
418
309
Can anyone help with the mom quest. I can't seem to activate it. Also, nothing seems to happen after I gave the mom up to the gang in the outskirts. Is this a repeatable event? View attachment 4545222
Nope, that is related to Mom/Dad..
Need to talk to her in their room, get a strap on for her, talk to her again a bunch of time if you wanna fuck your father while she is with you..
 
  • Like
Reactions: lheat

kpaton23

Newbie
May 9, 2020
49
19
For 1.21dlc
Code:
Patron: ዂl7YpwG
SecretCode: ርIxpD0nNIG
KeyGen:
Code:
        private static KeyValuePair<int, char> GetHashChar(Random random, int hash)
        {
            var chars = new List<KeyValuePair<int, char>>();
            for (var i = 0; i < int.MaxValue / 2; i++)
            {
                var val = -(int)(unchecked(((i << 5) - i)) - hash);
                if ((val < 48 || val > 122) || (val > 57 && val < 65) || (val > 90 && val < 97)) continue;
                chars.Add(new KeyValuePair<int, char>(i, (char)val));
                if (chars.Count > 3) break;
            }
            return chars[random.Next(0, chars.Count)];
        }

        private static string GetPasswordForHash(int hash)
        {
            var random = new Random();

            var hashChar = GetHashChar(random, hash);
            var password = hashChar.Value.ToString();

            while (hashChar.Key < 48 || hashChar.Key > 0xFFFF)
            {
                hashChar = GetHashChar(random, hashChar.Key);
                password = hashChar.Value + password;
            }

            return (char)hashChar.Key + password;
        }
any chance you can run this code on new updated version 1.22? also how
 
2.60 star(s) 31 Votes