Itshero

Newbie
Aug 31, 2022
15
16
22
Hi guys i keep doing the gang quest the revenge of the banker daughter but after I finish the quest Its resets again no new quest ?
 

DandyMe

Active Member
Mar 27, 2024
696
505
111
Hi guys i keep doing the gang quest the revenge of the banker daughter but after I finish the quest Its resets again no new quest ?
It's resetting so you can change your options.. other quests starting in town
 

Iakeay

Newbie
Jul 27, 2021
52
34
102
pixeldrain
1.23 dlc version
when it asks for a code just input whatever and it should work

1.25 update please king ?

sugarthing doesnt work on the online version for me, pressing enter in the textbox or pressing play, cousin home still not unlocked, doesnt work either on mopoga and idk how to open console if its possible on joiplay, help!
 
Last edited:

NSkell

Newbie
Jan 6, 2021
39
42
141
1.25 update please king ?

sugarthing doesnt work on the online version for me, pressing enter in the textbox or pressing play, cousin home still not unlocked, doesnt work either on mopoga and idk how to open console if its possible on joiplay, help!
Dude, literally scroll up 4 comments lol
 

kpaton23

Newbie
May 9, 2020
61
33
81
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;
        }
yeah can u atleast tell us how to apply this? ive entered this code into google dev console and its have sytax errors. static isnt recognised
 

kpaton23

Newbie
May 9, 2020
61
33
81
I may have found a solution to this.

I managed to download the whole game + images off of

by using windows wget on the directory, which downloaded all of the game images.
(use the command created by the wizard below in CMD)
(to create the wget command)
If you are using this for other games, I found the image directory by opening the index.html with notepad and looking for the path of image files

Put all these images into a folder called img (same as the path in the index.html, e.g. &lt;img src=&quot;img/dlc0/cousin/firstSex.webp)
Then download the index file by right clicking the page -> inspect element -> Sources (Top bar) -> right click dlc.html -> Save As
View attachment 4435958

To bypass the password you can then modify the game by looking for the line that hashes the passcode, in this instance: if hashStr($patron) == -349438983
and then changing it to accept all passwords inputted: if hashStr($patron) != -349438983

You can also do this for the Advanced Start Options: hashStr($secretCode) == -892483570 -> hashStr($secretCode) != -892483570
Put any code into the boxes and then press enter and it should allow you in.

If when playing you discover some images do not appear, this may be because wget saved webp files as webp.html. To fix this i created a python script you can place in the game folder and run it to convert them all back to webp found attached to the post in a ZIP folder.

It is currently 4am so I am not sure if any of this makes sense, ask if you are stuck on anything. I will be uploading the current 1.20 game but this guide is to be used when a new version comes out.
tried and didnt work. prob because it makes no sense to me. any hope of you running it again for 1.25 pls?
 

kpaton23

Newbie
May 9, 2020
61
33
81
like 2 pages ago someone posted a code for the console that will let you change the code using the hashstr
I updated it for the most recent version

origHashStr=window.hashStr;
window.hashStr = function(txt) {
if (txt == "start") return 2055815354;
if (txt == "secret") return -1349988898;

return origHashStr(txt);
};

I edited it to make it easier to copy the code and just to let anyone using it know copy it into the console it will change the code to start idk bout the secret but i didn't edit anything other then the hashstr num to the current one
tried and failed. any luck doing this for 1.25 pls?
 

Iakeay

Newbie
Jul 27, 2021
52
34
102
1.26 out here :
can't replicate what the person above this said, codes don't work probably version related
 
  • Like
Reactions: Ugdkdkd

Anewrai

Member
Dec 6, 2019
214
96
104
1.26 out here :
can't replicate what the person above this said, codes don't work probably version related
changelog
v1.26
- Added 2 new entry dialogues (roommate's room)
- Added 1 new scene having a threesome with the landlady (roommate's room)
- Added 2 new scenes having a threesome with the other roommate (roommate's room)
- Added 7 new random events-scenes (roommate's room)
- Added 3 new misc text descriptions (roommate's room)
- Added random passive roommate lust increases
- Changed roommate interaction UI
- Changed roommate bedroom UI
- Fixed roommate correct mentions
- Fixed small bugs

its for the male roommate.
 

TheRespond

Newbie
Oct 23, 2021
68
63
141
1.26 out here :
can't replicate what the person above this said, codes don't work probably version related
This should be the new code for version 1.26
The start password is start and the secret password is just secret

origHashStr=window.hashStr;
window.hashStr = function(txt) {
if (txt == "start") return -536497284;
if (txt == "secret") return -791075505;

return origHashStr(txt);
};
 
  • Like
Reactions: Iakeay
2.60 star(s) 32 Votes