A Hytale server plugin that tracks player statistics with cloud sync and web dashboard.
- Player Tracking - Playtime, online status, session history
- Combat Stats - PvP kills, mob kills, deaths, damage dealt
- Block Stats - Blocks placed and broken
- Cloud Sync - View stats at hytaletravelers.com/stats
- In-Game Dashboard - Interactive UI with sorting and search
- Discord Webhooks - Real-time notifications
- Server Browser - Get discovered at hytaletravelers.com/servers
- Download from CurseForge
- Place in your server's
modsfolder - Start your server
Stats are tracked and synced automatically.
| Command | Description |
|---|---|
/list |
Open the stats dashboard |
/players |
Alias for /list |
/pl ui |
Open the stats dashboard |
/pl help |
Show available commands |
| Command | Permission | Description |
|---|---|---|
/pl wipe <player> |
playerlogger.command.wipe |
Remove a player's data |
/pl wipe all |
playerlogger.command.wipe |
Wipe all player data |
/pl reset <category> |
playerlogger.command.reset |
Reset stats for all players |
/pl reset <category> <player> |
playerlogger.command.reset |
Reset stats for one player |
Categories: all, combat, blocks, playtime, kills, deaths, damage
Edit config.json in the plugin's data folder:
{
"pushEnabled": true,
"pushUrl": "https://api.hytaletravelers.com",
"pushIntervalSeconds": 30,
"serverName": "",
"publicListing": true,
"webEnabled": false,
"webPort": 8080,
"webhookEnabled": false,
"webhookUrl": ""
}{
"webhookEnabled": true,
"webhookUrl": "https://discord.com/api/webhooks/...",
"webhookPlayerJoin": true,
"webhookPlayerLeave": true,
"webhookPlayerDeath": true,
"webhookPlayerKill": true,
"webhookDailyLeaderboard": true,
"webhookDailyLeaderboardHour": 12
}See API.md for the public REST API documentation.
Enable webEnabled in config to host your own JSON API:
GET /api/players- List all players with statsGET /api/stats- Server-wide statistics
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Open a Pull Request
- Discord: discord.gg/CnJuHve8gn
- Issues: GitHub Issues
MIT License - see LICENSE for details.
Made by HytaleTravelers