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.
Quick answer
Which HUDRouter release should I use?
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.
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.
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.
- 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.
- 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.
- 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.
- 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
- Download
HUDRouter-X.X.X.jarfrom Releases - Place it in your
UserData/Mods/folder - Remove
MultipleHUD-x.x.x.jarif you had it - 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.
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
HUDRouter-0.1.1.jar
27 May 2026
HUDRouter-0.1.0.jar
27 Mar 2026
Looking for an older file? The official CurseForge project page is in Resources.