TheoPo

Newbie
Jun 25, 2022
17
25
I tried to crack the hash for 6 hours so I dont think ill be able to crack this one, and if future ones are similar I wont be able to crack them
 

TheoPo

Newbie
Jun 25, 2022
17
25
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. <img src="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
1736657685834.png

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.
 
Last edited:

TheRespond

Newbie
Oct 23, 2021
55
43
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. <img src="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.
I never thought about it like this! nice to know, thank you
 
  • Wow
Reactions: Xeron_Xr

mcmania

Member
Dec 4, 2016
122
897
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. <img src="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.
you can also just override the hashstring function in the chrome console to play it online:

open the console (ctrl + shift + I or F12) and paste:
JavaScript:
window.hashStr = function(txt) {
    if (txt == "start") return 35655988;
    if (txt == "secret") return -1349988898;

    var hash = 0, i, chr;
    if (txt.length === 0) return hash;

    for (i = 0; i < txt.length; i++) {
        chr   = txt.charCodeAt(i);
        hash  = ((hash << 5) - hash) + chr;
        hash |= 0; // Convert to 32bit integer
    }
    return hash;
};
the start code is now start and to cheat it is secret

... that cheat works for all games that rely to HashStr to work just replace the returned hashes with the expected one.
 
Last edited:

Fungamer80

Member
May 26, 2022
428
280
Where can I get the fake ID?
And how do I get the discount in the elctronik store?
Sister is on over 2000 coruption and everyone can fuck her in all holes....
 
2.60 star(s) 31 Votes