palworld-save-tools
palworld-save-tools copied to clipboard
Tools for converting Palworld .sav files to JSON and back
palworld-save-tools
Tools for converting Palworld .sav files to JSON and back.
This tool currently supports additional parsing of the following data in the Level.sav not handled by uesave or other non-Palworld aware Unreal save editors, emcompassing all known data structures as of Palworld v0.1.4.0:
GroupSaveDataMap- Groups such as in-game organizations and guilds
CharacterSaveParameterMap- Characters such as players and pals
MapObjectSaveDataItemContainerSaveDataCharacterContainerSaveDataDynamicItemSaveDataFoliageGridSaveDataMapBaseCampSaveDataWorkSaveData
Instructions
[!IMPORTANT] Converting
Level.savfiles to JSON will result in very large files, and may require significant amounts of RAM to process. Use a modern text editor such as Visual Studio Code or a Jetbrains IDE to open these files.
Prerequisites
- Python 3.9 or newer.
- Windows users: You can install Python 3.12 from the Microsoft Store or from python.org
Windows GUI steps
- Download the latest release from [https://github.com/cheahjs/palworld-save-tools/releases/latest].
- Unzip the file into a folder.
- Drag and drop your
.savfile (for Steam on Windows, these are located at%LOCALAPPDATA%\Pal\Saved\SaveGames\<SteamID>\<SaveID>) ontoconvert.cmdto convert the file into JSON. - To convert the
.sav.jsonfile back into a.savfile, drag and drop your.sav.jsonfile ontoconvert.cmd.
[!NOTE] In the event that the
convert.cmdfails to function correctly, try to disable Python's app execution aliases ("Manage app execution aliases"), or failing that, please use the Terminal instructions below
Terminal
- Download the latest release from [https://github.com/cheahjs/palworld-save-tools/releases/latest].
- Unzip the file into a folder.
- Open a terminal in the folder you just unzipped.
- Depending on how Python is installed, the next steps should use either
python,python3, orpy. - Run
python convert.py <path to .sav file>to convert the.savfile to a.sav.jsonfile. - Run
python convert.py <path to .json file>to convert the.sav.jsonfile to a.savfile.
[!NOTE] On Windows, you can drag and drop the
convert.pyfile and the.sav/.sav.jsonfile to avoid typing out the path.
Additional command line arguments:
--to-json: Force SAV to JSON conversion regardless of file extension--from-json: Force JSON to SAV conversion regardless of file extension--output: Override the default output path--minify-json: Minify output JSON to help speed up processing by other tools consuming JSON--force: Overwrite output files if they exist without prompting--custom-properties: Comma-separated list of paths from paltypes.py to decode. This can be used to ignore processing of types that are not of interest. For example--custom-properties .worldSaveData.GroupSaveDataMap,.worldSaveData.CharacterSaveParameterMap.Value.RawDatawill only parse guild data and character data.
Developers
This library is available on PyPi, and can be installed with
pip install palworld-save-tools
[!NOTE] Due to ongoing rapid development and the potential for breaking changes, the recommendation is to pin to a specific version, and take updates as necessary.
Roadmap
- [ ] Parse all known blobs of data
- [ ] Optimize CPU and memory usage
Development philosophy
- No additional dependencies. Scripts should run with a default install of Python. Distributing binary builds of Python is laden with AV false positives.
- Correctness of the conversion process is more important than performance. SAV > JSON > SAV should yield bit-for-bit identical files (pre-compression).
Projects that make use of palworld-save-tools
[!NOTE] This does not serve as an endorsement of any of these projects, use at your own risk.
- xNul/palworld-host-save-fix - Migrating save data between player IDs (eg, converting coop saves to dedicated server saves)
- PalEdit - GUI for editing Pals
- palworld-server-tool - Managing dedicated servers via RCON and SAV file parsing
- palworld-server-toolkit - Assorted set of SAV file manipulations