Get Online + Players working (required)
To show Online and Players automatically, your server must install the HytaleOne Query Plugin. Hytale Universe will query your server directly using the UDP query protocol — no separate Node.js “status reporter” process needed.
Do this
This is intentionally short. If you follow these steps exactly, it works.
- Install this plugin on your Hytale server:
- https://www.curseforge.com/hytale/mods/one-query-plugin
- Make sure your hosting allows outbound/inbound UDP for the server port.
- Hytale Universe queries your server at your listed IP:PORT (default port: 5520).
- Verify your listing IP:PORT is correct (example: play.example.com:5520).
- Your Server ID is in your server page URL (useful for support).
- Player counts come from the query response; you don’t need to run a separate status process.
Once the plugin is installed, your listing will automatically start showing Online and Players when the backend can query it.
- Double-check the IP:PORT on your listing matches your real server address.
- If your host blocks UDP, Online/Players will stay Offline until UDP is allowed.
- Allow up to ~1 minute for the next refresh.
Optional: UDP / firewall gotchas
- UDP blocked is the #1 issue: some hosts only open TCP by default.
- Make sure your game port is reachable externally (commonly 5520/UDP).
- If you run DDoS protection, ensure it supports UDP for your server port.
Votifier Integration (in-game rewards)
Set up Votifier so players receive in-game rewards when they vote for your server on Hytale Universe.
Votifier is a protocol that allows voting sites (like Hytale Universe) to send votes to your server securely. When players vote, your server receives a notification and can trigger rewards (items, money, commands, etc.).
Setup Steps
Your server needs to expose ports for vote reception:
- • Port 8192/TCP - V1 Protocol (RSA)
- • Port 8193/TCP - V2 Protocol (HMAC)
These ports must be reachable from the internet. Ask your host to open them if needed.
- Download the Hytale Votifier plugin:
- Hytale Votifier (CurseForge)
- Place the `.jar` in your `plugins/` folder
- Restart the server
- After plugin install, look for
plugins/Votifier/ - Find the file
public.key - Copy the entire content of this file
- You'll need this to set up voting on Hytale Universe
- Open
plugins/Votifier/config.yml - Look for the
tokens:section - Generate a strong random token (32+ characters)
- Keep this token secret — never share it
- Edit
plugins/Votifier/config.yml - Add reward commands under
on-vote: - Example: - give %player% diamond 1
- Restart the server to apply changes
- Check your firewall: ports 8192-8193 should be reachable
- Test with:
netstat -an | grep 8192(Linux/Mac) or use a port checker - Plugin should log vote events to console
- Ready to register with Hytale Universe!
Register Your Server with Hytale Universe
- Go to your server page on Hytale Universe
- Click the "Configure Votifier" button (or click here)
- Choose a protocol:
- V1 (RSA) — Paste your public.key here
- V2 (HMAC-SHA256) — Paste your secret token here
- Set your Server IP:PORT (example:
your-server.com:8192) - Click "Save Configuration" — Hytale Universe will now send votes to your Votifier ports
Testing Your Setup
How to test if Votifier is working
1) Check ports are open:
- Linux/Mac:
sudo lsof -i :8192 - Windows:
netstat -an | findstr 8192 - Or use an online port checker tool
2) Check plugin is running:
- Look at your server console for Votifier startup messages
- Type
/votifier reloadin-game (if permission)
3) Simulate a vote:
- Contact Hytale Universe support with your server ID
- Request a test vote to verify the connection
Troubleshooting Votifier issues
- • Ask your host: "Can you open TCP ports 8192 and 8193?"
- • Check if your firewall is blocking them locally
- • Some hosts require port opening via control panel
- • Check Java version (need Java 11+)
- • Look for errors in server console/logs
- • Try downloading latest Votifier version
- • Verify public key or token is correct on Hytale Universe
- • Check server IP:PORT is correct and reachable
- • Ensure ports 8192-8193 are accepting connections
- • Check server console for connection attempts
Contact Hytale Universe support on Discord with your Server ID, and we'll help you set up Votifier. Join Discord
Troubleshooting (fast)
- Confirm the One Query Plugin is installed and enabled.
- Make sure your listing IP:PORT matches the real server address.
- Ask your host to open the server port for UDP traffic.
- Wait up to ~60 seconds for the next refresh.
- Wrong port: if your server isn’t on 5520, include the correct port in your listing.
- DNS pointing wrong: verify your domain resolves to the right IP.
- Private IP: listings must use a public IP or public hostname.
Online works, but Players is wrong
If your server is Online but the player count looks wrong, it usually means the server is reachable but the query data is limited.
Make sure the One Query Plugin is installed on the server and compatible with your server version.
Some hosts rate-limit UDP or block certain packet sizes. If players stay at 0, ask your host about UDP filtering on your game port.