Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.62 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.62 KB

palworld-save-repair

GitHub License GitHub Actions Workflow Status Docker Image Size (tag)

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.

Feature

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.

Usage

docker compose example

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

Reference

License

MIT