⏳ Advanced Playtime
Advanced Playtime is a high-performance analytics plugin for Hytale servers. It tracks player sessions down to the millisecond, supports local and remote databases, and provides real-time live leaderboards.
✨ Features
- Live Leaderboards: Updates instantly, combining historical DB data with the current session of online players.
- Multi-Period Tracking:
Daily,Weekly,Monthly, andAll-Timestats. - Dual Database: HikariCP connection pooling for SQLite (default) and MySQL.
- Async Architecture: All database operations run on separate threads to ensure zero server lag.
- Fully Configurable: Translate messages, rename commands, and customize colors.
📥 Installation
- Download the latest release from the Releases Page.
- Place the
.jarfile into your Hytale server'smodsfolder. - Start the server.
🛠️ Configuration
The plugin generates a config.json in mods/Playtime/.
{
"database": {
"type": "sqlite",
"host": "localhost",
"databaseName": "playtime_db"
},
"command": {
"name": "playtime",
"aliases": ["pt", "stat"]
},
"periods": {
"daily": "daily",
"weekly": "weekly"
}
}


