https://github.com/zehmatt/subsistencesaveedit
Save game editing tool for the game Subsistence.
https://github.com/zehmatt/subsistencesaveedit
csharp save-editor subsistence-game
Last synced: over 1 year ago
JSON representation
Save game editing tool for the game Subsistence.
- Host: GitHub
- URL: https://github.com/zehmatt/subsistencesaveedit
- Owner: ZehMatt
- License: mit
- Created: 2018-05-23T03:59:56.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T04:48:01.000Z (about 8 years ago)
- Last Synced: 2025-03-21T09:04:16.713Z (over 1 year ago)
- Topics: csharp, save-editor, subsistence-game
- Language: C#
- Size: 34.2 KB
- Stars: 5
- Watchers: 5
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SubsistenceSaveEdit

Save game editing tool for the game Subsistence.
# Why
The game currently offers no sandbox feature so the only way to test everything is by playing it for hundred of hours. This gives you the ability
to get any item you want and any amount of it.
# Usage
Simply load the most recent savegame via "Load" since that is most likely the current active savegame file the game will use. Once loaded it should show all properties the save contains, you want to look into "SerializedWorldData" since every object and its data is in there from the world.
Selecting it will show every saved property for the world. To edit your player you would want to look for something like
```"Name":"coldmap1.TheWorld:PersistentLevel.ColdPlayerPawn_...```
I highly recommend to copy the text and use a JSON Formatter like https://jsonformatter.curiousconcept.com/ to make it easier to edit the data.
Once you are done editing, press "Save" and overwrite the loaded save.
# WARNING
Always create a backup of your save files, it is currently not doing that automatically.