- Apr 20, 2020
- 94
- 59
how was it fixed ?View attachment 3732532
Sadly after upgrading the inn I can't read the poster down-left there cuz of this ._.
UPD: Oh okay it was fixed somehow.
how was it fixed ?View attachment 3732532
Sadly after upgrading the inn I can't read the poster down-left there cuz of this ._.
UPD: Oh okay it was fixed somehow.
Their is an ending where Grace leave with zack something Kid, although that will require a decent bit management between the corruption and dungeon diving.i was bored and challenged post-game dungeon
apparently, i just wasted my time diving 50 floors, don't do it, baby-factory inn is the only true (slavery) ending XD
One of the NPC's says it clearly: that's how it works in this gameEvery time i invest into the skill tree, it resets, how does it work?
Dungeons are unlocked with story cutscenes when the inn upgrades. The inn upgrades each time you reach a certain chastity/virtue level and have paid off a debt.Looks cool but is there more dungeons than first with goblins?
I just found only one dungeon but have "Chapter 2".
if (deltaX <= 1 && deltaY <= 1) {
if ((deltaX <= 1 && deltaY <= 1) || !$gameDungeon.ready) {
Apparently, the room of recollection is considered a dungeon... so far, it's the only place I've found where we would benefit from long-distance movement instead of being limited to one square.Mouse and Touchscreen movement patch
just extract the file inside www/js.
Explanation: every time you move the game checks if the distance you want to move is less than 1 and blocks your movement if it's not. I changed it so it only makes this check if you are inside of a dungeon.
Original code:
if (deltaX <= 1 && deltaY <= 1) {
Changed Code:
if ((deltaX <= 1 && deltaY <= 1) || !$gameDungeon.ready) {
edit: this game has a serious problem with game states so if you can't move after coming back from a dungeon just save and reload your save
I DIDN'T TEST THIS ON THE WHOLE GAME SO USE AT YOUR OWN RISK
Thanks! So, if I evade any cutscenes, then I don't get access to other dungeons?Dungeons are unlocked with story cutscenes when the inn upgrades. The inn upgrades each time you reach a certain chastity/virtue level and have paid off a debt.
Exactly; the other dungeons (larger, better-paying, more fun) are only unlocked once you meet lewdness requirements AND pay the sum you owe.Thanks! So, if I evade any cutscenes, then I don't get access to other dungeons?
is this one patched or do i need to patch it?There is a LOT going on with this one. It is extremely heavy on a slow-burn corruption, like if corruption is the tag that makes you perk up this is the game for you. The old translation was bad but playable so I am hoping that has been fixed.
the game should, In theory, clean the " $gameDungeon.ready " variable after you leave a dungeon but is not doing it I could fiddle more with the code and find a better game state to check but this is enough for me right nowApparently, the room of recollection is considered a dungeon... so far, it's the only place I've found where we would benefit from long-distance movement instead of being limited to one square.
(Also, Grace's room at the inn is limited to one square, but since that room is so small, it's not much of a bother)
EDIT 2: Actually, going into the room of recollection breaks your patch – as long as Grace doesn't go look at those memories, she moves around her room and the inn as your patch intends, but once she accesses the recollection room and then comes back to the inn, she becomes limited to one square again...