Tool to repair corrupted save data of Palworld
Warning
Not well tested. Use at your own risk. Be sure to back up your saved data before using.
This tool fixes the Palworld player save data problem where the save_game_type
changes from /Script/Pal.PalWorldPlayerSaveGame
to None.PalWorldPlayerSaveGame
and becomes unloadable (character creation screen is displayed).
This tool is intended for use with dedicated game servers.
services:
palworld:
#...
volumes:
- ./palworld:/palworld/
save-repair:
image: ydkk/palworld-save-repair:latest
volumes:
- ./palworld:/palworld/
environment:
- PLAYERS_SAVE_PATH=/palworld/Pal/Saved/SaveGames/0/0123456789ABCDEF0123456789ABCDEF/Players
entrypoint: ""
# check and repair save data every 1 hour
command: ["/bin/sh", "-c", "while true; do sleep 3600; /app/pal_world_save_repair; done"]
restart: unless-stopped
- palworld-save-tools - Save data structure
MIT