I may have found a solution to this.
I managed to download the whole game + images off of
You must be registered to see the links
by using windows wget on the directory,
You must be registered to see the links
which downloaded all of the game images.
You must be registered to see the links
(use the command created by the wizard below in CMD)
You must be registered to see the links
(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.