Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Figured out what was going on with the "digit issue" it was just simply a quirk of how the old new line was being overlapped over the attack line it simply caused the new word to get in the way of readability once the current weapon stat got above a certain size due to how the line spacings worked out. Once you fixed the line over lap it also nailed that readability problem that resulted because of the line overlap.

my second playthrough on the web version ended up revealing a balance crushing bug though. When subtracting points from evasion while in that sort of "10" mode it allows the evasion to go negative earning hundreds of thousands of bonus idol points in the process each time you bash evasion into the negatives. The larger increment modes don't go below zero fortunately, but doesn't change the fact because one mode is bugged it allows a player to practically speed run the game.

Sadly the bulk buying in general is just really fucky, sometimes it eats extra points that it shouldn't be eating, other times it creates points out of nowhere or takes less points than it should be. Have been trying to figure out why it does this for ages but despite it running through the process of each purchase the amount of times it should for the check, it still manages to somehow return incorrect values constantly. Will probably leave it in like that until I can get all the bugginess with that fixed just so that people can recover points that the bugs might steal from a player. Turns out bulk purchasing for some reason is really rough to code.

Is it just simply not possible to code loops into into html? Just simply have the loop run things one point at a time to ensure accuracy. I've also observed during the negative evasion exploiting that the code operates quite inconsistently. Sometimes a +10 points mode click will bring a -80 evasion to +10 but other times it could end up a different number entirely.

See that's the thing, it is running loops, just for some reason those loops keep getting the numbers wrong so I've been trying to just get it to be as close to correct as possible. Going to keep trying to improve on it obviously, I want it to actually be properly functional for all of them, it's just frustratingly difficult to make it cooperate with that. I might have to just redo the entire code for bulk buying since it seems tweaking some stuff to function is somehow breaking it in the other direction.