• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.
Apr 5, 2021
158
822
Alright, how many sacrifices did you make to the temple of Bal for this to occur?
A unity based porn game, that runs smoothly, with a good character builder, functional combat, decent sex animations, and it's furry erotica that isn't strictly gay?
Legitimately, shocked. A lot of these things shouldn't wow me the way they do, but are just so rare I feel a need to call them out as noteworthy.
Dev has earned themselves a quick sale here as an encouragement thanks.
 

Pokerit

Member
Jul 1, 2018
135
193
Cheat Menu Mod
Last Tested: v1.0

View attachment 3513178
Open the Menu with Insert or F1


Features


Toggle Invincibility*
Clothed Skeleton Mode
Naked Skeleton Mode
Save Game without Quitting
Teleport All NPCs**
Teleport All Chests
Teleport to Gate
Change Player Faction


Installation

Download the attachment
Throw the zip contents into the game folder where the exe is
You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.


Doesnt work
 

Pokerit

Member
Jul 1, 2018
135
193
Hey, lets use the same button and the same area for clicking that advances text to pick decide your answer! That always works so well!
 

paw_beans

Member
Modder
May 23, 2022
175
424
Doesnt work
I have uploaded a quick fix for now. It works once again but the the change factions cheat needs to be fixed and the teleport all chests is missing the newly added chests. I will fix that in the coming days once i got time.
 
  • Like
Reactions: Azazael

Nikephouros

Member
Aug 15, 2018
171
248
I have uploaded a quick fix for now. It works once again but the the change factions cheat needs to be fixed and the teleport all chests is missing the newly added chests. I will fix that in the coming days once i got time.
The invincibility cheat doesn't work, I turn it on when going to a new world and I'm still getting killed.
 

paw_beans

Member
Modder
May 23, 2022
175
424
The invincibility cheat doesn't work, I turn it on when going to a new world and I'm still getting killed.
I tested it and it worked in my case. Did you enable it in the town first and then in the wilderness or in the wilderness only?
 

paw_beans

Member
Modder
May 23, 2022
175
424
I did it in the town first and then re enabled it in the wilderness
Due to some code issues on how i made it the activation dot does not reset properly. If its green in the town it has to be red in the wilderness. Hopefully i can fix that in the next release so for now when you enable it just click it again in the new world and ignore the color of the dot.
 

paw_beans

Member
Modder
May 23, 2022
175
424
Hey paw_beans think you can add coins to the cheats?
I took a look into it and currently i can't do that. To much fucked code that blocks me from adding gold or any item as a matter of fact.

The invincibility cheat doesn't work, I turn it on when going to a new world and I'm still getting killed.
i have added a fix for the invincibility reset issue. whenever it is green it is now active even when the scene changes.

New cheats have also been added.
 

ElmerFapp

Member
Mar 27, 2022
119
76
Gold is actually almost trivial to get. Pick up any berries you find and chuck them in a cooking pot. A stack of 10 cooked berries sells for 50 gold so with only a few stacks you can buy just about whatever you want.
 

edwardQjones

New Member
Mar 6, 2024
3
3
I took a look into it and currently i can't do that. To much fucked code that blocks me from adding gold or any item as a matter of fact.
Here's a minimally-intrusive approach which might achieve the desired result.
Code:
    public bool RemoveGold(int amount)
    {
        if (this._playerData.inventory.GetItemCount(Game.FindItemByName("Gold")) < amount)
        {
            return false;
        }
        for (int i = 0; i < amount; i++)
        {
            this._playerData.inventory.RemoveItem(Game.FindItemByName("Gold"));
        }
        return true;
    }
Code:
    public bool RemoveGold(int amount)
    {
        return true;
    }
We stop the game from checking whether the player has sufficient gold to make a purchase, and we similarly stop the game from deducting the cost of a purchase. The overall effect is that the player can always buy whatever they want (even if they have literally 0 gold in inventory), they're never forced to grind for cash, and there's no risk of damaging the player's inventory or corrupting the savefile.

It might not be worthwhile to release a new version for a single cheat. Here are a few other features that I've hacked into my local game files, which might be worth implementing properly (and sharing with the community).
  • improved camera control during sex scenes (adjusting the xyz offset and fov in the configurableCamera::Update method)
  • hotkey to show/hide tails (so that they can be toggled off when they clip during sex scenes)
  • extended slider bounds (so that players can tinker with extreme proportions in the standard character editor window, instead of relying on Notepad editing outside-of-game)
  • increased/unlimited allowance for double-jumps (note: my implementation is very lazy, which means that NPCs also obtain infinite jumping privileges. They tend to get stuck on roofs)
  • faster/longer dash
  • magical seduction (player's Flirt action always causes all nearby NPCs to offer sex)
  • manual control of sex scene progression (Spacebar to advance, instead of the normal time-based logic)
 

paw_beans

Member
Modder
May 23, 2022
175
424
Here's a minimally-intrusive approach which might achieve the desired result.
Code:
    public bool RemoveGold(int amount)
    {
        if (this._playerData.inventory.GetItemCount(Game.FindItemByName("Gold")) < amount)
        {
            return false;
        }
        for (int i = 0; i < amount; i++)
        {
            this._playerData.inventory.RemoveItem(Game.FindItemByName("Gold"));
        }
        return true;
    }
Code:
    public bool RemoveGold(int amount)
    {
        return true;
    }
We stop the game from checking whether the player has sufficient gold to make a purchase, and we similarly stop the game from deducting the cost of a purchase. The overall effect is that the player can always buy whatever they want (even if they have literally 0 gold in inventory), they're never forced to grind for cash, and there's no risk of damaging the player's inventory or corrupting the savefile.

It might not be worthwhile to release a new version for a single cheat. Here are a few other features that I've hacked into my local game files, which might be worth implementing properly (and sharing with the community).
  • improved camera control during sex scenes (adjusting the xyz offset and fov in the configurableCamera::Update method)
  • hotkey to show/hide tails (so that they can be toggled off when they clip during sex scenes)
  • extended slider bounds (so that players can tinker with extreme proportions in the standard character editor window, instead of relying on Notepad editing outside-of-game)
  • increased/unlimited allowance for double-jumps (note: my implementation is very lazy, which means that NPCs also obtain infinite jumping privileges. They tend to get stuck on roofs)
  • faster/longer dash
  • magical seduction (player's Flirt action always causes all nearby NPCs to offer sex)
  • manual control of sex scene progression (Spacebar to advance, instead of the normal time-based logic)
I have thought about that method too but i wanted to try and do it in a game logic hooking way where it just calls specific codes with instructions instead of patching code in it. That should be less destructive if things change but it might be worth a shot nonetheless. It would be awesome if you could help me out with the rest of these things to see how you did it and then i could actually release it in a cheat. For starters if you want you could send me your modded assembly in the DM's so i can take a look at it.
 

consey

Newbie
Aug 6, 2022
73
45
This game is so fucking fun, I bunny hopped all the way to the portal and saved over 7k gold and also lewded Willow to have sex in the wild islands >: )
 
4.30 star(s) 14 Votes