Preparing Your Backup for Upload

Follow whichever section matches where your old world currently lives. By the end you'll have one file, ending in .tar.gz, ready to upload on the Restore a Backup page.

Windows — Dedicated Server

This is for a Palworld dedicated server you run yourself on a Windows PC (installed via SteamCMD).

1
Find your save folder.

Open File Explorer and go to wherever you installed your Palworld dedicated server. Inside it, navigate to:

Pal\Saved\SaveGames\0\

Inside that folder you'll see one folder with a long string of letters and numbers as its name, that's your world. There should only be one.

2
Open PowerShell right there.

Still inside that long-named folder (so you can see Level.sav and a Players folder), hold Shift and right-click on empty space inside the folder. Choose "Open PowerShell window here" (or "Open Terminal here" on Windows 11).

3
Run this command.

Paste this into the window that opened and press Enter:

tar -czf my-backup.tar.gz *

A file called my-backup.tar.gz will appear in that same folder in a few seconds. That's the file you upload.

Windows — Singleplayer / Solo World

This is for a world you've been playing solo (not a dedicated server), that you now want to move onto a real hosted server.

1
Find your save folder.

Press Windows key + R, type the following exactly, and press Enter:

%LOCALAPPDATA%\Pal\Saved\SaveGames

You'll see a folder named after a long number (your Steam ID). Open it, then open the single world folder inside. You should now see Level.sav and a Players folder.

2
Open PowerShell right there.

Hold Shift and right-click on empty space inside that folder. Choose "Open PowerShell window here" (or "Open Terminal here" on Windows 11).

3
Run this command.
tar -czf my-backup.tar.gz *

A file called my-backup.tar.gz will appear in that folder. That's the file you upload.

Linux — Dedicated Server

This is for a Palworld dedicated server you run yourself on a Linux machine (VPS, home server, etc.), connected via SSH.

1
Find your save folder.

From your server's install directory, the save data is at:

Pal/Saved/SaveGames/0/

Inside there's one folder named with a long string of letters and numbers, that's your world.

2
Package it.

Run this (replace the long folder name with whatever's actually there on your server):

cd Pal/Saved/SaveGames/0/YOUR_FOLDER_NAME_HERE tar -czf ~/my-backup.tar.gz .

This creates my-backup.tar.gz in your home directory.

3
Download it to your computer.

From your own PC (not the server), open PowerShell (Windows) or Terminal (Mac), and run:

scp -i your-key.pem username@your-server-ip:~/my-backup.tar.gz .

Replace your-key.pem, username, and your-server-ip with your own actual details. If you're not sure what these are, whoever set up your server can tell you, or check your hosting provider's connection details.

Moving From Another Hosting Provider

If your old Palworld server is with a different host who also uses a Pterodactyl-style control panel:

1
Log into your old host's panel and open your server, then go to the Files tab.
2
Navigate into Pal/Saved/SaveGames/0/, then into the one long-named folder inside it.
3
Select everything inside that folder (usually a "select all" option, or a checkbox at the top), and look for a Compress or Archive option, choose .tar.gz if given a choice. If only .zip is offered, download that instead and follow the "Windows — Singleplayer" steps above on the extracted contents to convert it to .tar.gz.
4
Download the resulting file, that's what you'll upload.

Can't Find Your Save?

If none of the above matches your situation, or you're not confident doing this yourself, reach out on support@drakkon-hosting.com or our Discord and we'll help you get it sorted.