A Minecraft 1.20.6 Fabric mod that tracks per-player statistics and provides a lightweight in-game economy. All persistence is delegated to the Custom Player Data framework.
The custom-player-data-1.0.3 mod must be installed.
SERVER_STOPPING as a safety net). /info and /top play_time add
the in-progress session to the displayed value so the number is always
current.| Command | Permission | Description |
|---|---|---|
/info |
everyone | Show your own statistics. Play time is formatted as X jours, Y heures, Z min. |
/info <player> |
op (lvl 2) | Show another player's statistics. |
/top <stat> |
everyone | Top 10 leaderboard. Built from currently connected players (the framework does not expose offline data). |
join_countjoin_count on every successful login./info.death_countServerLivingEntityEvents.AFTER_DEATH and increments
death_count whenever a ServerPlayerEntity dies.death_count leaderboard via /top death_count./info.player_killsplayer_kills on the attacker when one player kills another.
Self-kills are filtered out.player_kills leaderboard via /top player_kills./info.mob_kills_hostilemob_kills_hostile whenever a player kills an hostile entity.mob_kills_hostile leaderboard via /top mob_kills_hostile./info.mob_kills_passivemob_kills_passive whenever a player kills an passive entity./info.balanceThe whole economy module is gated behind the BALANCE stat. Activating it
unlocks the following commands:
| Command | Permission | Description |
|---|---|---|
/balance |
everyone | Show your own balance. |
/balance <player> |
op (lvl 2) | Show another player's balance. |
/pay <player> <amount> |
everyone | Transfer money. Refused if the source balance is insufficient or the target is yourself. |
/money <player> give <amount> |
op (lvl 2) | Add money to a player's balance. |
/money <player> take <amount> |
op (lvl 2) | Remove money — clamped at zero, never negative. |
/money <player> set <amount> |
op (lvl 2) | Set a player's balance to a specific value. |
Activating balance also adds a styled "Solde" line to /info and a
balance entry to /top.
.jar into your mods/ folder.player-statistics.jar into the same mods/ folder.