PingProtocol-1.1.2.jar
20 Jan 2026
CurseForge · Hytale mod
Implementation of Minecraft Ping protocol for Hytale, so serverlists know your server is online!
Quick answer
Ping Query Protocol - For Server Lists PingProtocol-1.1.2.jar targets 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. No required dependencies listed for this file.
Where it goes
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.
PingProtocol-1.1.2.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
Built for Ping Query Protocol - For Server Lists PingProtocol-1.1.2.jar. Pick another file and the loader, install side or required mods may change.
Use PingProtocol-1.1.2.jar. It targets Hytale; another release may target a different game build or dependency set.
This file does not list any required mods. Do not add a library just because a different file uses it.
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.
Use the “Get this file” button beside PingProtocol-1.1.2.jar. It opens that exact file at the source.
About this project
A Hytale plugin that implements the Minecraft Server List Ping protocol, allowing Minecraft clients to query your Hytale server information and display it in their server list.
This plugin creates a TCP server that runs alongside Hytale's QUIC (UDP) game server. The key insight is that TCP and UDP are separate protocols, so they can both listen on the same port number without conflicts:
This allows Minecraft clients to ping your Hytale server without any port forwarding or additional network configuration.
Full Minecraft Protocol Support:
Automatic Server Information:
Performance Optimized:
Simple Configuration:
PingProtocol-1.0.0.jar from releasesmods/ directory/plugin load Hytalist:PingProtocolmods/Hytalist_PingProtocol/config.json if neededThe plugin creates a config.json file in mods/Hytalist_PingProtocol/:
{
"motd": "",
"showPlayerList": true
}
| Option | Default | Description |
|---|---|---|
motd |
"" |
Message of the Day displayed to Minecraft clients (empty string if not set) |
showPlayerList |
true |
Show player list when hovering over player count |
The plugin automatically:
The plugin implements the full modern Server List Ping protocol:
Example JSON response:
{
"version": {
"name": "2026.01.13",
"protocol": 0
},
"players": {
"max": 100,
"online": 5,
"sample": [
{
"name": "PlayerName",
"id": "uuid-here"
}
]
},
"description": {
"text": "My Hytale Server"
}
}
The plugin also supports legacy ping protocol for older clients:
0xFE 0x01 0xFA magic bytes0xFF kick packet§1\0protocol\0version\0motd\0online\0maxSupports the oldest ping protocol:
0xFE magic byte0xFF kick packetmotd§online§maxThe plugin is optimized for low-latency responses:
The plugin uses Netty (already available in Hytale server) to create a TCP server:
Minecraft Server List Ping uses TCP, while Hytale uses QUIC which runs over UDP. Since these are different transport protocols, they can both bind to the same port number:
./gradlew jar
The JAR will be created in build/libs/PingProtocol-1.0.0.jar.
Cause: Another TCP service is using the port
Solution:
Cause: Firewall blocking TCP connections or plugin not started
Solution:
Cause: Config setting or no players online
Solution:
"showPlayerList": true in configcurrentPlayerCount > 0Cause: Cache not working or first request
Solution:
Project description from CurseForge.
Recent files
20 Jan 2026
19 Jan 2026
19 Jan 2026
16 Jan 2026
Looking for an older file? The official CurseForge project page is in Resources.