HUDRouter

Lets multiple mods show their HUDs at the same time. Drop-in replacement for MultipleHUD with full backward compatibility. Simple API for developers, zero config for players.

HUDRouter - Beta

HUDRouter was created because MultipleHUD has not been updated for a long time. Rather than waiting for an update that may never come, this mod was built from scratch as a modern, clean replacement with full backward compatibility.

What it does

Hytale only allows one custom HUD per player. If you have multiple mods that each want to display their own HUD (like AscendRPG, BetterMap, EasyHunger), only the last one wins. HUDRouter combines them all into a single HUD so every mod can display its UI at the same time.

Installation

  1. Download HUDRouter-X.X.X.jar from Releases
  2. Place it in your UserData/Mods/ folder
  3. Remove MultipleHUD-x.x.x.jar if you had it
  4. Done - no config needed, all existing mods work automatically

For Developers

Existing MultipleHUD mods

No code changes needed. HUDRouter includes a compatibility shim - all MultipleHUD.getInstance().setCustomHud() calls work automatically.

New mods (reflection - recommended)

All API methods are static. No compile-time dependency needed:

try {
    Class<?> router = Class.forName("com.hudrouter.HudRouterPlugin");
    Method setHud = router.getMethod("setChannelHud",
        Player.class, PlayerRef.class, String.class, CustomUIHud.class);
    setHud.invoke(null, player, playerRef, "MyMod", myHud);
} catch (ClassNotFoundException e) {
    // HUDRouter not installed - fall back
    player.getHudManager().setCustomHud(playerRef, myHud);
}

Available static methods

// Register / update
HudRouterPlugin.setChannelHud(player, playerRef, "MyMod", myHud);
HudRouterPlugin.setChannelHud(player, playerRef, "MyMod", myHud, 10); // with priority

// Remove
HudRouterPlugin.removeChannelHud(player, "MyMod");

// Query
HudRouterPlugin.getActiveChannels(player);
HudRouterPlugin.hasChannel(player, "MyMod");
HudRouterPlugin.getChannelCount(player);

Optional manifest entry

{
  "OptionalDependencies": {
    "com.hudrouter:HUDRouter": "*"
  }
}

Contributing / Source

The full source code is available on GitHub:

https://github.com/Alien4042x/Hytale-HUDRouter-Mod

If you want to improve the router, fix bugs, or extend functionality, feel free to open an issue or pull request.

The HUDRouter Team

profile avatar
  • 3
    Followers
  • 5
    Projects
  • 1.8K
    Downloads

More from Alien4042xView all

  • VampireMod project image

    VampireMod

    • 37
    • Mods

    Become a creature of the night. Gain powerful abilities, feed on enemies, and survive the deadly sunlight.

    • 37
    • May 8, 2026
    • Mods
    • +3
  • Werewolf Mod project image

    Werewolf Mod

    • 469
    • Mods

    Hunt or be hunted fight werewolves in the wild, risk a deadly bite, and transform into a beast every midnight unless you brew a cure in time.

    • 469
    • May 4, 2026
    • Mods
    • +1
  • AscendDungeons project image

    AscendDungeons

    • 128
    • Mods

    Enter dangerous dungeons filled with darkness, secrets, and deadly creatures. Fight your way through and claim powerful rewards… if you survive.

    • 128
    • April 15, 2026
    • Mods
    • +4
  • AscendRPG project image

    AscendRPG

    • 975
    • Mods

    AscendRPG is a server-side RPG framework for Hytale with WoW-inspired classes, leveling, perks, and custom UI. Mage staff visuals are provided via a separate required asset download.

    • 975
    • April 15, 2026
    • Mods
    • +2
  • VampireMod project image

    VampireMod

    • 37
    • Mods

    Become a creature of the night. Gain powerful abilities, feed on enemies, and survive the deadly sunlight.

    • 37
    • May 8, 2026
    • Mods
    • +3
  • Werewolf Mod project image

    Werewolf Mod

    • 469
    • Mods

    Hunt or be hunted fight werewolves in the wild, risk a deadly bite, and transform into a beast every midnight unless you brew a cure in time.

    • 469
    • May 4, 2026
    • Mods
    • +1
  • AscendDungeons project image

    AscendDungeons

    • 128
    • Mods

    Enter dangerous dungeons filled with darkness, secrets, and deadly creatures. Fight your way through and claim powerful rewards… if you survive.

    • 128
    • April 15, 2026
    • Mods
    • +4
  • AscendRPG project image

    AscendRPG

    • 975
    • Mods

    AscendRPG is a server-side RPG framework for Hytale with WoW-inspired classes, leveling, perks, and custom UI. Mage staff visuals are provided via a separate required asset download.

    • 975
    • April 15, 2026
    • Mods
    • +2