-
Notifications
You must be signed in to change notification settings - Fork 9
Migration
EliteEssentials includes migration services to help you import data from other plugins or previous versions.
EliteEssentials provides the /eemigration command to migrate data from other essentials plugins. This command is admin only.
Migrate data from another essentials plugin to EliteEssentials.
Usage:
-
/eemigration essentialscore- Migrate from nhulston's EssentialsCore -
/eemigration hyssentials- Migrate from leclowndu93150's Hyssentials -
/eemigration essentialsplus- Migrate from fof1092's EssentialsPlus -
/eemigration homesplus- Migrate from HomesPlus
Behavior:
- Checks if the source plugin's data folder exists
- Imports warps, kits, and homes from the source
- Skips items that already exist in EliteEssentials (preserves your data)
- Reports migration results with counts and any errors
- Safe to run multiple times
Example Output:
Starting Hyssentials migration...
Source: /path/to/server/mods/com.leclowndu93150_Hyssentials
Migration complete!
- Warps imported: 5
- Players with homes: 12
- Total homes imported: 23
Permissions:
- Admin only (simple mode)
-
eliteessentials.admin.reload(advanced mode)
EliteEssentials can automatically migrate data from Hyssentials, a previous Hytale server essentials plugin. This migration imports:
-
Warps from
warps.json -
Homes from
homes.json - Player data associated with homes
The migration is handled by the HyssentialsMigrationService class, which:
- Detects if a Hyssentials data folder exists at
../HytaleServer/hyssentials/(relative to the EliteEssentials data folder) - Reads the Hyssentials
warps.jsonfile and imports each warp that doesn't already exist in EliteEssentials - Reads the Hyssentials
homes.jsonfile and imports homes for each player - Creates player data files for players who have homes but no existing EliteEssentials data
- Logs all migration actions and errors
The migration runs automatically when:
- EliteEssentials starts up and detects the Hyssentials folder
- The server admin triggers migration via console command (if available)
Migration is safe to run multiple times - it will skip any warps or homes that already exist.
When migration runs, you'll see logs like:
[Migration] ========================================
[Migration] Starting Hyssentials migration...
[Migration] Source: /path/to/server/hyssentials
[Migration] ========================================
[Migration] Migrating Hyssentials warps.json...
[Migration] - Imported warp: shop
[Migration] - Imported warp: spawn
[Migration] - Imported warp: arena
[Migration] Migrating Hyssentials homes.json...
[Migration] - Imported 3 home(s) for player Steve
[Migration] - Imported 2 home(s) for player Alex
[Migration] ========================================
[Migration] Hyssentials migration complete!
[Migration] - Warps: 3
[Migration] - Players: 2
[Migration] - Homes: 5
[Migration] ========================================
"Hyssentials folder not found"
- Ensure Hyssentials was previously installed and has a
hyssentials/folder - The folder should contain
warps.jsonand/orhomes.jsonfiles
"Failed to migrate warps/homes"
- Check that the JSON files are valid and not corrupted
- Ensure file permissions allow reading the Hyssentials data folder
- Review server logs for specific error messages
Warps or homes not appearing after migration
- Migration skips items that already exist in EliteEssentials
- Check the migration log to see what was imported
- Verify the source files contain the expected data
EliteEssentials can also migrate data from HomesPlus, another Hytale homes plugin. This migration imports:
- Homes from HomesPlus's data format
The migration process is similar to Hyssentials migration and runs automatically when HomesPlus data is detected.
After migration, your data will be stored in EliteEssentials' standard locations:
mods/EliteEssentials/
├── warps.json # Warp locations
├── homes.json # Player homes (UUID -> {name -> location})
├── players/ # Per-player data folder
│ └── <uuid>.json # Individual player data
If automatic migration doesn't work, you can manually import data:
- Stop the server
- Backup all data files
- Manually copy warps and homes from the old plugin's JSON format to EliteEssentials' format
- Start the server and verify the data appears correctly
- Commands - All available commands
- Configuration - Configuration options
- Data Storage - How data is stored
EliteEssentials by EliteScouter | GitHub | Report Issues