X Backup
An advanced backup mod for Minecraft designed specifically for Fabric servers and clients.
Key Advantages
🔥 Lightning-Fast Speed
Thanks to multi-threading technology, the backup process runs incredibly fast - up to 50 times faster compared to standard saving methods.
💾 Space Efficiency
The system uses incremental backups and automatic compression of large files, significantly reducing disk space usage.
🔄 Easy Restoration
Automatic server restart after restoration ensures smooth gameplay without interruptions.
🎯 Area-Specific Restoration
Ability to restore only specific parts of the world - you can specify chunk coordinates for precise restoration without affecting other areas.
☁️ Cloud Storage
Integrated support for automatic backup storage in Microsoft OneDrive and other cloud services.
Usage Guide
Creating a Backup
To create a new backup:
/xb create
You can add a comment to the command:
/xb create My first backup
Viewing Backup List
To get a list of all saved copies:
/xb list
The command displays the latest 6 saves with their number, creation time, and comment for each.
Restoring a Backup
To return to a specific save:
/xb restore 1
/xb restore 1 --chunk 0 0 10 10 - restores blocks in the specified area from coordinates (0,0) to (10,10)
[!TIP] Use block coordinates, not chunk coordinates!
Setting Up Automatic Backups
Set the interval between automatic backups:
/xb backup-interval 10800 - saves every 3 hours (10800 seconds)
Mirror Server Configuration
For synchronization from the main server:
/mirror - synchronizes the latest backup
/mirror 1 - synchronizes specific backup number 1
/mirror --stop - stops server with automatic restoration
In configuration file:
{
"mirror_mode": true,
"mirror_from": "C:\MinecraftServer\My-Server",
"blob_path": "C:\MinecraftServer\My-Server\blob"
}
Automatic Cleanup of Old Backups
Flexible retention policy in configuration file:
{
"prune": {
"enabled": false,
"keep_policy": {
"1d": "30m",
"1w": "6h",
"1M": "1d",
"1y": "1w",
"2y": "1M"
}
}
}
This setting keeps:
- entries every 30 minutes from the past day
- every 6 hours from the past week
- daily versions from the last month
- weekly versions from the past year
- monthly versions from two years
Viewing Backup Information
/xb info 1 - shows detailed information about backup number 1, including creation time, comments, and size.