Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Tags
Creators
Details
๐งฉ PlayerDataSync
Seamless Cross-Server Player Data Synchronization
Keep inventories, Ender Chests, XP, health, attributes and more synchronized across every server in your network.
๐ Overview
PlayerDataSync keeps player data synchronized across every server in your Minecraft network.
Whether players move between Survival, Lobby, Creative, SkyBlock, Minigames or anything else, their progress follows them automatically.
No manual file transfers. No duplicated inventories. No lost progress.
Player data lives in one shared database. With Redis enabled, changes propagate between servers the moment they happen โ your network behaves like a single world.
โจ What Gets Synchronized
Every entry is an individual toggle, so you decide exactly what travels with your players.
| Category | Included |
|---|---|
| Items | Inventory, Ender Chest, selected hotbar slot |
| Progression | Experience, levels, advancements, statistics |
| Vitals | Health, absorption, hunger, saturation, exhaustion, air, fire ticks, freeze ticks, arrows in body |
| State | Game mode, flight, walk & fly speed, fall distance, player time, player weather |
| Advanced | Attributes, Persistent Data Container, Vault economy balance |
| Optional | Location (disabled by default โ see below) |
๐ About location sync
Location sync teleports players to their stored position on join. It ships disabled (sync.location: false), because it only makes sense when the destination server has a world of the same name. If that world is missing, the restore is skipped with a log warning instead of dropping the player somewhere wrong.
๐งฐ More Than Just Sync
- ๐ด Redis live sync โ propagate changes between servers instantly instead of waiting for the next join
- ๐ AES encryption โ encrypt stored profiles with your own key
- ๐พ Automatic backups โ compressed snapshots before data is overwritten
- ๐ Storage migration โ move between MySQL, MariaDB, PostgreSQL and MongoDB with one command
- โฌ๏ธ Legacy import โ bring profiles over from the original PlayerDataSync
- ๐ค Import / export โ move individual player profiles in and out
- ๐ฌ Discord webhooks โ notifications for sync successes and failures
- โฑ๏ธ Autosave โ periodic saves as a crash safeguard
- ๐ซ Exclusions โ skip specific worlds or specific item types
- ๐ bStats & FastStats metrics
- ๐งฉ Developer API โ events and Persistent Data Container hooks for your own plugins
๐ Why PlayerDataSync?
Running player data across multiple servers without proper synchronization leads to:
- Lost inventories
- Item duplication
- Missing experience
- Inconsistent progress
PlayerDataSync removes those failure modes by synchronizing automatically whenever data changes.
Benefits
- โ One shared player profile across your whole network
- โ Instant propagation with Redis
- โ Four database backends to choose from
- โ Asynchronous โ the main thread stays free
- โ Skips redundant saves when nothing changed
- โ Open source (MIT) and actively maintained
๐งฑ Supported Platforms
| Component | Supported |
|---|---|
| Minecraft | 1.20 โ 26.2 |
| Server software | Paper, Spigot, Fabric, Velocity (proxy bridge) |
| Java | 21+ โ Minecraft 26.x servers require Java 25 |
| Database | MySQL, MariaDB, PostgreSQL, MongoDB |
The download is the Paper/Spigot plugin. The Fabric and Velocity builds are bundled inside it under bundled/ โ extract whichever you need.
Please note:
- Fabric is not yet at feature parity. Advancements and statistics are not synchronized on Fabric. The 1.20 and 1.21 Fabric builds additionally lack Ender Chest, potion effects and attributes; the 26.x builds have those.
- Forge is currently unavailable while its build tooling catches up with the Minecraft 26.x toolchain.
- On Fabric, use MariaDB, PostgreSQL or MongoDB. The MySQL driver is not bundled and mod loaders do not supply one. The MariaDB driver connects to MySQL servers just fine. Paper and Spigot are unaffected.
- SQLite is not supported.
โ๏ธ Configuration
Full documentation: ๐ https://pds.devvoxel.de/config
- Paper / Spigot:
plugins/PlayerDataSyncReloaded/config.yml - Fabric:
config/playerdatasync.properties, created on first start
storage:
type: "mariadb" # mysql, mariadb, postgres, mongodb
host: "localhost"
port: 3306
database: "minecraft"
username: "root"
password: ""
redis:
enabled: true # strongly recommended for multi-server setups
host: "localhost"
port: 6379
sync:
inventory: true
ender_chest: true
economy: true # requires Vault + an economy plugin
location: false # teleports players on join
๐ฌ Commands & Permissions
Everyday operation is fully automatic โ players never touch a command. For administrators, everything lives under /playerdatasync (aliases /pds, /pdasync) behind the playerdatasync.admin permission.
| Command | Description |
|---|---|
/pds status |
Sync statistics, error counters, excluded worlds |
/pds save <player> |
Force-save a player |
/pds saveall |
Force-save everyone online |
/pds load <player> |
Reload a player from storage |
/pds list |
List stored profiles |
/pds backup |
Create a backup |
/pds export / /pds import |
Move profiles in and out |
/pds migrate |
Migrate between storage backends |
/pds toggle |
Toggle syncing at runtime |
/pds debug on|off |
Toggle verbose logging |
/pds reload |
Reload the configuration |
๐ Performance
- โก Asynchronous database operations โ the main thread is never blocked
- ๐ Redundant saves are skipped when the inventory has not changed
- โณ Configurable minimum interval between saves
- ๐พ Compressed backups
- ๐ Low CPU and memory footprint
Suitable for small communities and large networks alike.
๐ Requirements
- โ Java 21+ (Java 25 for Minecraft 26.x servers)
- ๐๏ธ MySQL, MariaDB, PostgreSQL or MongoDB
- ๐งฑ Paper, Spigot or Fabric server
- ๐ Multiple servers pointed at the same database
- ๐ด Redis (optional, recommended) โ instant cross-server propagation
- ๐ฐ Vault + an economy plugin (optional) โ required for economy sync
๐ ๏ธ Support
- ๐ฌ Join our Discord server
- ๐ Report bugs on GitHub
- ๐ Read the documentation
- ๐ก Share feature requests and suggestions
โค๏ธ Credits
Developed with โค๏ธ by DerGamer09
If PlayerDataSync helps your network, consider leaving a review on SpigotMC, Modrinth, Hangar or BuiltByBit. Your feedback shapes what gets built next.


