Title: Vampire Crawlers savegame editor
Slug: vampire-crawlers-savegame-editor
Date: 2026-05-14 18:15:00
Author: Kartones
Lang: en
Tags: Videogames, Tools, Game Dev, Javascript, Game Hacks
og_image:
Description: A Javascript/NodeJS savegame editor for the Vampire Crawlers videogame.



After having played for +130 hours the videogame [Vampire Survivors](https://poncle.games/vampire-survivors), when the follow up, [Vampire Crawlers](https://poncle.games/vampire-crawlers) was recently released, I had to play it. 

Now, +20 hours of playtime later I was able to finish it once, and again, like I did [with Vampire survivors](https://blog.kartones.net/post/vampire-survivors-cheats/), I wanted to fiddle around with the savegames, to see if I could modify the game coins (I'm not willing to go through the insane grinding required to tweak the gems). Using [the tiny NodeJS editor I built](https://github.com/Kartones/vampire-survivors-savegame-editor) for the first game, I've also been able to create one for the new title. you can find it here: [https://github.com/Kartones/vampire-crawlers-savegame-editor](https://github.com/Kartones/vampire-crawlers-savegame-editor).

Sometimes, we forget to test the easiest path first. Vampire Survivors's checksum logic was simple: you empty the `checksum` field in the (JSON) savegame data, modify whatever you want, and then recalculate the new checksum with the whole JSON contents. With Vampire Crawlers, I initially tried similarly, but I couldn't reproduce a correct hash (easiest case: empty checksum and recalculate should generate the original checksum again). I tried a few SHA algorithm variants, but nothing was working.

Then, out of ideas, I began attempting to reverse engineer the logic (it is a Unity title, so potentially easy if the DLLs are .NET, not IL2CPP). I was going deeper into the rabbit hole, when I decided to first try something simpler: Search online if there was any information about the savegames... and voila! I found [this article](https://www.neonlightsmedia.com/blog/vampire-crawlers-save-transfer-game-pass-steam) that mentioned simply leaving an empty `Checksum` value to port a savegame from XBox Game Pass to Steam. A quick test later, confirmed that it works (at least as of 2026-05-14).

I fixated too much on my idea of the developer maybe using the same technique as the last time, but I forgot to test the most trivial case: is the checksum actually required?

In any case, a fun albeit quick project. Just above 100 lines of code, and most of it reused from the original editing tool.
