Mining Mechs
Steam Link : https://store.steampowered.com/app/1603180/Mining_Mechs/
Savefile Location : C:\Users\%PROFILE%\AppData\Local\Mining_Mechs
File Name : save_data_0.sav
Format : JSON
What is this game about?
Mining Mechs is a 2D indie game where you control a mech to mine for resources.
The gameplay loop is simple, fun, and addictive:
Mine for materials.
Sell those materials for in-game currency.
Upgrade your mech to mine faster and carry more materials.
Repeat!
Analyzing the save game
The save game is a plain JSON file, although it’s quite large. It contains information like the map, items in the map, player stats, etc. Based on the screenshot from the game, the in-game currency value is displayed in the top-right corner:
Open the file in a text editor of your choice, I’ve used VS Code here.
To quickly find which field to modify, search for that value in the save file. Open your favorite text editor, hit Ctrl+F
, and paste the value. In my case, it was 5370, and I found it under root.player_<id>.money
. I changed it to an arbitrary value 69420 and the next time I launched the game, the change was reflected.
Have fun—no more grinding necessary for materials!