- Aug 20, 2020
- 1,484
- 2,625
Nope, he had that before I even downloaded the gameI noticed that you were the reason for the above error.
Nope, he had that before I even downloaded the gameI noticed that you were the reason for the above error.
It's ok, I'll just find another way, never takes more than a couple of minutesYour files will be an issue in the next update.
For those that want to remove the checks and be able to cheat as one should in an indie AVN, place this file in game\script\Setting .
I've had no issues so far, although, my game has been unrenned and unrpyced first.
If it causes issues let me know, but so far, no issues here.
I'll update this file here as I find more checks and remove them
I basically made it so the condition check for cheating, is impossible to achieve. This should cause no issues.
I think I edited the save to get something like 15Millions. I don't think I've used the console in this one.Sorry for the dumb question. I ran the game through 'extract packages', then 'decompile' (both using the latest unren.bat), and enabled the console. I restarted the game, opened the console, input g_gold=40000, and verified that numberwas in my backpack - butit gets reset to 0 when i go to the store.
Am I missing something?
Lol! You are funny bro. Deal with piracy and "hacking" of your game. It's an integral part of game development. Just enjoy what you do, but don't try to control how people treat your game. Did it and let it float freely. This will save you a lot of nerve cells.Your files will be an issue in the next update.
Gave it a shot withI think I edited the save to get something like 15Millions. I don't think I've used the console in this one.
The game also has several "gold" entries if memory serves, both need to be the same number if I'm not mistaken... it's been a while since I had to look at the money in this one
The dev keeps adding in anti-cheat methods. That used to work, then the dev added code so that money was stored a couple ways and checks to make sure they are all the same. So we started using the console to call the function that adds gold from completing chores, then the dev added more stuff to block that and instead of just deleting your money it kicks you out of the game. I was going to find the function that looks for cheating to disable it, but someone earlier beat me to it. I have not tested their fix and cannot vouch for it....but I can guarantee it will be blocked next update.Sorry for the dumb question. I ran the game through 'extract packages', then 'decompile' (both using the latest unren.bat), and enabled the console. I restarted the game, opened the console, input g_gold=40000, and verified that numberwas in my backpack - butit gets reset to 0 when i go to the store.
Am I missing something?
Well, enjoy the pointless grind I guessGave it a shot withYou must be registered to see the links, editing the save filed and loading it instead of editing in console. still didn't work.
def Encryption( int_num ):The dev keeps adding in anti-cheat methods. That used to work, then the dev added code so that money was stored a couple ways and checks to make sure they are all the same. So we started using the console to call the function that adds gold from completing chores, then the dev added more stuff to block that and instead of just deleting your money it kicks you out of the game. I was going to find the function that looks for cheating to disable it, but someone earlier beat me to it. I have not tested their fix and cannot vouch for it....but I can guarantee it will be blocked next update.
Yeah I had found it and was thinking on how to disable it but you posted your fix first so....no need for a second one lol.def Encryption( int_num ):
if 999999 < 1:
if not IsTest():
renpy.show_screen("security_warning")
return sha256(str(0)).hexdigest()
return sha256(str(int_num)).hexdigest()
I basically replaced the condition with basic math impossible to achieve on all three checks like this
So in theory, since the condition never happens, the check never does either.
That's how I disabled every single of his previous attempts, simply make the condition a basic math impossible to happenYeah I had found it and was thinking on how to disable it but you posted your fix first so....no need for a second one lol.
Want to know something funny?man this dev ego is higher than the sky
I extracted the files using unren and applied Squishyderpy's mod, typing this in console adds $600: $ PutGold(600)Gave it a shot withYou must be registered to see the links, editing the save filed and loading it instead of editing in console. still didn't work.
Literally some people don't have time to grind a porn game and don't wanna waste their time because they have more important things to do. You're just alienating your audience by adding all this anti cheat. I guarantee that you would get more supporters removing anti cheat from the gameYour files will be an issue in the next update.
If you've got some coding knowledge, you can actually do that from the dialogue files, like when talking to Luna, it'll add 1000$ as soon as you click on it, so you'll have the proper amount, but, it's probably way more work than is needed for such a game ^_^I hadn't thought of that the last time. I just got around the game checking gold cheats by calling the $PutGold() function directly from the console instead of trying to set the gold through the variables.