In Linux you can install renpy as a package, then open the game directory in command line and run the command
renpy .
to play the game (the period is required, it indicates the current directory). This works for any VN that only supports Windows.
For anyone encountering the bug with the second to last scene not unlocking, open the 'game' directory (It's in the same folder as 'ThePrank.exe') and open 'script.rpy' in a text editor. Change line 3837 from
$ persistent.HjortGyldenEnding
to
$ persistent.HjortGyldenEnding = True
The 'T' must be uppercase, the others lowercase. Restart the game if it is running, then play through the game as normal until you reach the scene and it will now unlock.
That occurs right at the end of the chapter, so you're not missing much. If you don't want to wait for an actual fix to see the rest of the scene I've got a workaround, just place the file linked below next to the archive.rpa file. You should need to load from before the sabotage choice, sorry, but I can't fix that without directly modifying the archive.rpa file.
Should look like this:
/Hero's_Advent_Patreon-1.23-pc/game/QuickFixRay13.rpy
The download link only seems to connect to the PT version. For those who only read English, the English version is at: https://fliphtml5.com/nhsnl/urld/%5BEN%5DFUR_%26_FUN_-_A_FURRY_LIFE%21/
From the DLC's description:
This Digital Art Pack includes:
路 55+ CGs
路 Character portraits (including initial concept design sketches)
路 Some in-game items
That sounds like a match. There should be 59 CG's in the 'CG' folder, the 'Characters' folder should have various sprites, drafts, and bios of each character, and the 'Items' folder should have images of in-game items. If you are missing the folder contents you may have a bad download, try re-downloading the DLC.
That is possible, but would also require some changes to the code to get the nude sprites. For just the CG's, you can actually do this yourself by navigating to 'HENRY'S_ALT_GLASSES-2.0-pc/game' (Windows might use '\') and copying the 'resource1.rpa' file. Name this copied version 'resource3.rpa'. Move this into 'Dragon Island/game' so that you have three resource files there.
Do note that this will also overwrite some parts of the main menu making it a bit harder to see the options. Simply delete 'resource3.rpa' if an actual mod is made.
On line 425 of the main_werewolf.rpy file it currently reads:
if quest41.status == 2 and quest41.start_date > timenow.day and 7 < timenow.hour < 11:
shouldn't it be:
if quest41.status == 2 and quest41.start_date < timenow.day and 7 < timenow.hour < 11:
(Only change is the direction of the first '>')
quest41.start_date shouldn't be greater than timenow.day, which is currently required to progress the Wuldon Raid storyline.
Whenever I try to extract it I get an error saying the archive is corrupt. As a workaround, you can download and extract the Windows version and run it through Renpy directly. Wine/Proton might also work, but I haven't tested them.
One other thing that might work is just copy the 'game' folder from the Windows version to the Linux version. Nothing in that folder should be tied to any specific operating system, so as long as the audio is the only thing corrupted in the Linux version it should fix it.
For anyone who can't play due to the persistent data, here's how to fix it.
Open the directory where you have the game's executable. Open the 'game' directory. Open the file 'script.rpy' in the text editor of your choice. Locate line 254 and 255. It should look like below:
if persistent.its_over == True:
return
Edit it so it looks like this:
if persistent.its_over == True:
$ persistent._clear(False)
return
This will make it so you clear all of the saved data when you run the game. You will have to click Start twice, once to run the new code and a second to start the game.
Unfortunately, I think this goes against what the author was intending, but it will let you play until an official fix is made.
Edit - It's probably obvious, but I'll say it anyway - you need to save the 'script.rpy' file before running the game.
If you aren't using Google Docs for its cloud features, I can recommend Manuskript and/or Kate. Manuskript is awesome for writing stories, I highly recommend it. However, it isn't very good for writing code. If you were doing your RenPy code in Google Docs, then Kate (K Advanced Text Editor) might be the correct option for you.
Both options run locally, so no chance of anyone stealing your work for training their AI or any other reason.
Manuskript: https://www.theologeek.ch/manuskript/download/
Kate: https://apps.microsoft.com/store/detail/kate/9NWMW7BB59HW?hl=en-gb&gl=gb&rtc=1
Shouldn't have anything to do with meeting Wuldon. The quest can be pretty buggy if you don't solve it your first time through. If you remove all of the weeds, leave and reenter, then remove all the weeds again, you will have just made it impossible to inform Uffe of your success. Same thing if you try for a second amulet.
To be able to complete the quest, the game only makes two checks - one that you have the Moonstone amulet in your inventory and a second check on your quest status. Wuldon has nothing to do with either, so it's unlikely he was the culprit. The quest status, though, is likely the issue. Remember how above I mentioned that doing certain tasks twice can make the quest impossible? Both of those alter your quest status by incrementing its value. However, this isn't reset when you exit the cave and you can repeat the action as many times as you want, further incrementing your quest status. Uffe only checks for a specific value, not a value greater than a specific threshold, making it easy to accidentally break.
There are two updates released at the same time each month. This last one was both v0.0.17 and v0.0.16, one was given to Patreons and one was released to the public.
V0.0.17 is the werewolf orgy. That one is not yet released to the public. This can be confusing as the update information contains the Patreon version info, not the public info. So if you scroll up from this comment you will see the update info for the Patreon version, not the public version. If you do in fact have the Patreon version, I'm afraid I can't help you as I don't have that version.