EliteEssentials | Everything Your Server Needs and More!

Homes, warps, player warps, TPA, RTP, kits, economy, bans, mutes, warnings, admin UI, chat formatting, 500+ configurable messages, SQL storage, PlaceholderAPI, LuckPerms & HyperPerms. The most complete essentials mod for Hytale trusted by top servers.

File Details

EliteEssentials-2.0.1.jar

  • R
  • Mar 28, 2026
  • 8.33 MB
  • 324
  • Early Access

File Name

EliteEssentials-2.0.1.jar

Supported Versions

  • Early Access

2.0.1 - 2026-03-28

Changed

  • Renamed /admin to /eeadmin — avoids conflicts with other mods that register their own /admin command

Fixed

  • Default join/leave messages leaking through — the vanilla "player has joined default" and "player left the server" messages were showing alongside custom EliteEssentials messages, even with suppressDefaultMessages: true. Root cause: the event-based suppression (AddPlayerToWorldEvent.setBroadcastJoinMessage(false)) was no longer reliably preventing the server from sending the vanilla join message in the latest Hytale API update.
    • Replaced the old LeaveMessagePacketFilter (which only caught leave messages via reflection) with a new DefaultMessagePacketFilter that intercepts both join and leave ServerMessage packets at the network level. Since ServerMessage.message and FormattedMessage.messageId are now public fields in the updated API, reflection is no longer needed
    • Added RemovedPlayerFromWorldEvent handler with setBroadcastLeaveMessage(false) — the new API now provides a proper event-based method to suppress leave messages (previously only join messages had this via AddPlayerToWorldEvent)