Mod

Player Statistics Utils

Quick rating

Player Statistics Utils

No reviews yet

Mod that add multiple player statistique like game play or last connection.

Mod Loaders
Fabric
Quilt
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
Player Statistics-0.1.6.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Player Statistics

Version Loader Status

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.


Requirements

The custom-player-data-1.0.3 mod must be installed.


Currently available features

Tracking

  • First join — recorded once on the player's very first connection.
  • Last join — refreshed on every connection.
  • Play time — accumulated in seconds. The session start time is held in memory and added to the persisted total on disconnect (or on 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.

Commands

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).

Connection counter — join_count

  • Increments join_count on every successful login.
  • Adds a line to /info.

Death tracking — death_count

  • Listens to ServerLivingEntityEvents.AFTER_DEATH and increments death_count whenever a ServerPlayerEntity dies.
  • Exposes a death_count leaderboard via /top death_count.
  • Adds a line to /info.

Player kill tracking — player_kills

  • Increments player_kills on the attacker when one player kills another. Self-kills are filtered out.
  • Exposes a player_kills leaderboard via /top player_kills.
  • Adds a line to /info.

Hostile mob kill tracking — mob_kills_hostile

  • Increments mob_kills_hostile whenever a player kills an hostile entity.
  • Exposes a mob_kills_hostile leaderboard via /top mob_kills_hostile.
  • Adds a line to /info.

Passive mob kill tracking — mob_kills_passive

  • Increments mob_kills_passive whenever a player kills an passive entity.
  • Adds a "Mobs passifs tues" line to /info.

Economy — balance

The 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.


Language support

  • English
  • French

Installation

  1. Install Fabric Loader for Minecraft 1.20.6: https://fabricmc.net/use/installer/
  2. Download Fabric API for 1.20.6 and drop the .jar into your mods/ folder.
  3. Drop player-statistics.jar into the same mods/ folder.
  4. Launch the game!

Player Statistics

Version Loader Status

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.


Requirements

The custom-player-data-1.0.3 mod must be installed.


Currently available features

Tracking

  • First join — recorded once on the player's very first connection.
  • Last join — refreshed on every connection.
  • Play time — accumulated in seconds. The session start time is held in memory and added to the persisted total on disconnect (or on SERVER_STOPPING as a safety net). /playerinfo and /leaderboard play_time add the in-progress session to the displayed value so the number is always current.

Commands

Command Permission Description
/playerinfo everyone Show your own statistics. Play time is formatted as X jours, Y heures, Z min.
/playerinfo <player> op (lvl 2) Show another player's statistics.
/leaderboard <stat> everyone Top 10 leaderboard. Built from currently connected players (the framework does not expose offline data).

Connection counter — join_count

  • Increments join_count on every successful login.
  • Adds a line to /playerinfo.

Death tracking — death_count

  • Listens to ServerLivingEntityEvents.AFTER_DEATH and increments death_count whenever a ServerPlayerEntity dies.
  • Exposes a death_count leaderboard via /leaderboard death_count.
  • Adds a line to /playerinfo.

Player kill tracking — player_kills

  • Increments player_kills on the attacker when one player kills another. Self-kills are filtered out.
  • Exposes a player_kills leaderboard via /leaderboard player_kills.
  • Adds a line to /playerinfo.

Hostile mob kill tracking — mob_kills_hostile

  • Increments mob_kills_hostile whenever a player kills an hostile entity.
  • Exposes a mob_kills_hostile leaderboard via /leaderboard mob_kills_hostile.
  • Adds a line to /playerinfo.

Passive mob kill tracking — mob_kills_passive

  • Increments mob_kills_passive whenever a player kills an passive entity.
  • Adds a "Mobs passifs tues" line to /playerinfo.

Economy — balance

The 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 /playerinfo and a balance entry to /leaderboard.


Language support

  • English
  • French

Installation

  1. Install Fabric Loader for Minecraft 1.20.6: https://fabricmc.net/use/installer/
  2. Download Fabric API for 1.20.6 and drop the .jar into your mods/ folder.
  3. Drop player-statistics.jar into the same mods/ folder.
  4. Launch the game!

Screenshots

Gallery

  • 2026-04-10_15.09.24.png
    2026-04-10_15.09.24.png 2026-04-10_15.09.24.png
  • 2026-04-10_15.09.13.png
    2026-04-10_15.09.13.png 2026-04-10_15.09.13.png
  • /info
    /info
  • /top play_time
    /top play_time

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync