Probably, ya, but the game has its fans or wouldn't be earning over $2k on crowdfunding sitesGo have a look at all the 5 star reviews. I'm certain that 90%+ of those accounts are just dups accounts for him to prop up the game. Once again, I'll humbly ask to go and do an honest review of the game. This game is not worth half the stars it has.
Fans? It's a strange word for people who pay money for such a pig in a poke.Probably, ya, but the game has its fans or wouldn't be earning over $2k on crowdfunding sites
Tsunade seems to be in the files, the mad knight with that starting isn't there. (FWE)"
v0.3.1
- Tsunade and MAD Knight fights.
We've added a fight in both forest and wastelands! You might want to practice before trying these two ferocious opponent. "
They fucking forgot to put in the files for those fights. View attachment 4443990
You seriously can't make this shit up.
I'm up to breaking their shitty game and editing another html if you guys want to play it (took a look at the code and, as expected, they went through another round of obfuscation. They probably spent more time thinking how to protect their shit code than actually working on the game), just let me know but I really don't think it's worth the time.
In the mean time, you can use the old edit from last version. Doesn't seem like much has changed.
Your are right! It's fixed in the version 0.3.1a that we just released!Tsunade seems to be in the files, the mad knight with that starting isn't there. (FWE)
This also has been fixed in the 0.3.1a bugfix version! You will now be able to progress through The Wastelands and Forest! We are also working on improving the grind system on version 0.3.2.The balance is way off on the food and resources grind. However just hack the save to give yourself some resources and it becomes enjoyable to play with a good mixture of gameplay mechanisms, writing and porn. Much more fun and interactive than most the "games" being released that are not much more than visual novels.
That said, the bugs are real! Im stuck again in 3.1 unable to explore and have no idea why i cant go past the point im up to.
"We added two new fights to the game and forgot to put the files for one of them. Sorry guys! We were too busy putting our code through an obfuscating grinder. Hope you enjoy the new bugsYour are right! It's fixed in the version 0.3.1a that we just released!
what you mean by cant use Sugarcube?you cant use "Sugarcube" anymore, well byeeeeeeeeeeeee
I'm guessing he means putting twine.Sugarcube.variables in the console to change the variables. Dev's blocked that a while ago.Game too heavy + not pay $50 for stolen content
what you mean by cant use Sugarcube?
Should give you access to the cheats menu.1. With the .html loaded in your browser, open up Developer Tools (F12, Ctrl+Shift+I, or Cmd+Opt+I)
2. Click on "Console."
3. Enter the following:
window.md5 = function(input) { return "4a4f41211bbd96092c87d27f9c07203f"; };
it gives me access but inventory and other values will not increaseFor anyone trying to get cheats working (as of version 0.31a):
Should give you access to the cheats menu.
// Max coin
SV.market.zeta=[1<<20|1,1<<20|1];
// Unlock all scenes
Object.values(SV.scenes.list).forEach(c=>c.unlocked=true);
// Set all character's lust + trust to max
Object.values(SV.characters).forEach(c=>c.stats&&Object.assign(c.stats,{lust:999,trust:999}));
// Set player stats to max
Object.assign(SV.stats,{virus:80,craftmanship:999,dominance:999,charisma:999,tiredness:0});
// Unlock all icons
Object.entries(gameData.market.items).forEach(([k,{type}])=>type.includes('Icon')&&(SV.market.items[k]=true));
How should we use it? Can you give me some information?JavaScript:// Max coin SV.market.zeta=[1<<20|1,1<<20|1]; // Unlock all scenes Object.values(SV.scenes.list).forEach(c=>c.unlocked=true); // Set all character's lust + trust to max Object.values(SV.characters).forEach(c=>c.stats&&Object.assign(c.stats,{lust:999,trust:999})); // Set player stats to max Object.assign(SV.stats,{virus:80,craft:999,dominance:999,charisma:999,tiredness:0}); // Unlock all icons Object.entries(gameData.market.items).forEach(([k,{type}])=>type.includes('Icon')&&(SV.market.items[k]=true));