Back to mods
HUDRouter project artwork

CurseForge · Hytale mod

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.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which HUDRouter release should I use?

Updated 2 months ago
Latest stable file HUDRouter-0.1.1.jar
Game version 0.5
Mod system Built-in Hytale mod system

HUDRouter-0.1.1.jar targets 0.5. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should HUDRouter be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does HUDRouter-0.1.1.jar need?

HUDRouter-0.1.1.jar. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add HUDRouter without breaking your instance.

Built for HUDRouter-0.1.1.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use HUDRouter-0.1.1.jar. It targets 0.5; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside HUDRouter-0.1.1.jar. It opens that exact file at the source.

About this project

What does HUDRouter add?

HUDRouter

HUDRouter was created as a modern alternative to MultipleHUD, with a focus on cleaner architecture, easier extensibility, and 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.

Project description from CurseForge.

Pick your setup

HUDRouter releases for each Hytale build.

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

HUDRouter releases and Hytale builds

2 of 2 releases match

Looking for an older file? The official CurseForge project page is in Resources.