Description
๐ ModHotReload
Hot-reload Hytale server mods without restarting your server.
ModHotReload lets you safely update server-side plugins at runtime by simply dropping a new .jar into an update folder. No restarts. No downtime. No risky file overwrites.
โจ What it does
Instead of replacing files directly in mods, ModHotReload uses a safe update inbox system:
Build a new version of your mod
Drop it into
mod-updates/ModHotReload automatically:
- waits until the file is fully copied
- unloads the old plugin
- creates a backup
- installs the new version
- loads it instantly
โ If something breaks โ it rolls back automatically
๐ฅ Why use ModHotReload
- โก Update plugins without restarting the server
- ๐งช Perfect for mod development & testing
- ๐ Reduce downtime on live servers
- ๐พ Automatic backups before every update
- ๐ Built-in rollback on failure
- ๐ฆ Clean archive of processed & failed updates
๐ง Core Features
- ๐ Update inbox (
mod-updates) - ๐ Optional auto-watch mode
- ๐ Runtime load / unload / reload
- ๐งฏ Safe replacement workflow (no file locking issues)
- ๐ Update history tracking
- โ๏ธ Configurable folders & timing
๐ฆ Default Structure
mods/ # Active plugins
mod-updates/ # Drop new jars here
mod-updates/_processed/ # เคธเคซเคฒ updates
mod-updates/_failed/ # Failed updates
mod-updates/_backups/ # Backup copies
๐ฎ Commands
/modhotreload status
/modhotreload scan
/modhotreload history
/modhotreload watch on|off
/modhotreload reloadconfig
/modhotreload load <group:name>
/modhotreload unload <group:name>
/modhotreload reload <group:name>
Permission: modhotreload.admin
โ ๏ธ Important Notes
โ Works with normal server plugins (
mods)โ Does NOT support:
earlyplugins- class transformers
๐ Server logic reloads instantly
๐จ Client-side changes (UI, assets) may require player reconnect
๐งช Best Use Cases
- Developing and testing mods faster
- Maintaining admin tools on live servers
- Reducing restart cycles
- Safely deploying quick fixes
โ๏ธ Installation
- Put the mod
.jarinto yourmodsfolder - Start the server once
- Drop updated plugins into
mod-updates/ - Done โ ModHotReload handles the rest
โ FAQ
Does this reload all mods? โ Only normal server plugins
Is it safe? โ Yes, with backups and rollback โ but always test critical updates
Do players see changes instantly? โ Server logic โ yes โ UI/assets โ may require reconnect
๐ก Summary
ModHotReload turns plugin updates from a risky restart process into a safe, automated, drop-in workflow.


