Menu
 

Official Character Migration & RCON v2: Palworld Server Tools 2026

Official Migration & RCON v2 (2026)

As of the December 2025 update, Pocketpair has officially replaced the unreliable third-party Python migration scripts with a native **Character Migration Tool**. Simultaneously, the RCON protocol was upgraded to **v2**, offering real-time world state data and inventory management.

🛠️ Why the Tooling Update?

  • No More Corruption: The official tool handles UID remapping natively within the save binary.
  • Guild Integrity: Transfers now correctly migrate guild ownership and base associations.
  • RCON Real-time: RCON v2 allows for monitoring server FPS and player inventories without restarting.

1. Using the Official Migration Tool

The migration tool is included with the SteamCMD server files under the /Tools/Migration/ directory. It is a command-line utility for both Windows and Linux.

Migration Workflow:

  1. Export: Run the tool on the Source Server to generate a .palplayer bundle.
    ./PalMigrationTool --export PlayerUID --world SavePath
  2. Transfer: Move the .palplayer bundle to the Target Server's /Saved/Migration/ folder.
  3. Import: Run the tool on the Target Server.
    ./PalMigrationTool --import PlayerUID --target SavePath

Pro Tip: Ensure BOTH servers are on the exact same game version (e.g., v0.6.5) before attempting a migration, or the NBT structures will fail to map correctly.

2. Mastering RCON v2

RCON v2 (introduced late 2025) uses a persistent socket connection and a JSON-based response format for advanced commands. To enable it, update your PalWorldSettings.ini:

RCONEnabled=True
RCONPort=25575
RCONProtocolVersion=2
RCONRealTimeMonitoring=True

New v2 Commands:

  • GetServerPerformance: Returns a JSON object with Server FPS, Tick Time, and Memory Load.
  • GetPlayerInventory [PlayerName]: Lists all items and Pal IDs currently held by the player.
  • TeleportToCoord [X] [Y] [Z]: Precision teleportation for admin assistance.
  • SyncWorldState: Forces a database write and clears the memory cache (essential before a maintenance reboot).

Security Hardening for RCON

With the increased power of RCON v2, securing your access is paramount. In 2026, many "RCON Scanners" target default ports.

Security Step Recommended Action
Port ObfuscationChange 25575 to a random 5-digit port (e.g., 49281).
Strong PasswordsUse 16+ character alpha-numeric strings. Palworld RCON no longer has a character limit.
IP WhitelistingUse your firewall to only allow RCON traffic from your management IP.

Troubleshooting Tools

Migration Tool says "UID Mismatch"?

This happens if the player has already joined the target server once. You must delete the [UID].sav file on the target server before running the --import command.

RCON v2 won't connect?

Ensure your management software supports the **RCON-JSON** handshake. Legacy tools like 'RCON-CLI' may need an update to v3.0+ to handle the new protocol version.

Can I migrate from GamePass to Steam?

Yes. The December 2025 tool officially supports **Cross-Platform Decryption**, allowing you to move .sav files from the Xbox/GamePass app to a Steam-hosted dedicated server.

Next Steps

Admin-First Hosting: Every Supercraft Palworld server includes a **Web-RCON v2** console integrated into the dashboard. We also offer automated Character Migration—just upload your save, and our systems handle the remapping for you.

Top