Compatibility
Minecraft: Java Edition
1.21.11
Platforms
Supported environments
Server-side
Singleplayer
Links
Tags
Creators
Details
Licensed MIT
Published 2 months ago
Updated 2 months ago
Tickwatch
Track playtime, kills, and deaths โ server-side, lightweight, crash-safe.
Tickwatch quietly records how long each player has played and how many kills and deaths they rack up, then stores it all in a clean JSON file. No client mod required, no commands to learn, no impact on your TPS.
โจ Why Tickwatch?
- ๐ชถ Featherweight โ tracking is one integer per online player per tick. That's it.
- ๐ฅ๏ธ Server-side only โ your players join with a vanilla client. Install it on the server and forget it.
- ๐ Fabric and NeoForge โ same mod, both loaders.
- ๐พ Crash-safe by design โ atomic writes with a rotating backup. A sudden power loss or hard crash cannot corrupt your stats.
- โก Never blocks the server โ all disk writes run on a dedicated background thread.
๐ What it tracks
For every player, per world:
| Stat | Detail |
|---|---|
| โฑ๏ธ Playtime | Counted in ticks, with a human-readable 2h 14m 30s field |
| โ๏ธ Kills | Mobs and players killed by that player |
| ๐ Deaths | Times that player died |
Stored at <world>/fiw-clock/stats.json:
{
"players": {
"069a79f4-44e9-4726-a5be-fca90e38aaf5": {
"name": "Notch",
"playTimeTicks": 144000,
"playTimeFormatted": "2h 00m 00s",
"kills": 12,
"deaths": 3
}
}
}
Perfect for leaderboards, web dashboards, Discord bots, or anything that can read JSON.
๐ฆ Requirements
Minecraft 1.21.11 ยท Java 21+
- Fabric: Fabric API + Fabric Language Kotlin
- NeoForge: Kotlin for Forge
No Architectury or other wrapper mod required.
๐ Install
- Install Fabric or NeoForge on your server.
- Add the matching dependencies to
mods/โ Fabric: Fabric API + Fabric Language Kotlin; NeoForge: Kotlin for Forge. - Drop in the Tickwatch jar for your loader.
- Start the server โ stats start tracking immediately.
๐ก Tickwatch is purely server-side. Players do not need it installed to join.
๐ Links
- ๐ Source & issues: https://github.com/Fi3w0/Fiw-Clock
- ๐ License: MIT


