A modern, actively maintained fork of PlayerStats by Artemis_the_gr8 All open issues fixed · All pull requests merged · Folia support · Java 21 · Paper API
PlayerStatsRemake is a fork of the popular PlayerStats plugin originally created by Artemis_the_gr8. Since the original project is no longer actively maintained, this fork was created to:
- ✅ Fixed most GitHub issues from the original repository
- ✅ Merged all pending pull requests
- ✅ Added Folia server support
- ✅ Modernized the codebase (Java 21, Paper API)
- ✅ Kept the plugin up-to-date with new Minecraft versions
Credits: All original work, design, and concept belongs to Artemis_the_gr8. This fork is released under the same MIT License.
Original repository: https://github.com/itHotL/PlayerStats
PlayerStatsRemake is a Minecraft server plugin that adds commands to view player statistics in top-x format, individually, or as a server-wide total. Tested on Paper 1.20+, Purpur, and Folia.
Supported platforms:
- Paper ✅ (primary)
- Spigot ✅
- Purpur ✅
- Folia ✅ (new in this fork)
- Bukkit
⚠️ (may work, not officially tested)
No more broken eCloud downloads! PlayerStatsRemake now has 100% built-in PlaceholderAPI support.
You can use %playerstats_<stat_name>_[sub_stat_name]% (e.g. %playerstats_play_one_minute% or %playerstats_mine_block_stone%) immediately after installing!
| Issue | Description | Status |
|---|---|---|
| #175 | NullPointerException when looking up stats for new entities like happy_ghast |
✅ Fixed |
| #164 | 42-second startup delay on Purpur 1.21.5 | ✅ Fixed |
| PR | Description | Status |
|---|---|---|
| #170 | Folia support + Paper API migration | ✅ Merged |
| #174 | Bukkit events for DiscordSRV integration | ✅ Merged |
StatCalculatedEvent– fired after every stat lookup (useful for DiscordSRV, logging, etc.)StatSharedEvent– cancellable event when a player shares results in chat
-
Easy to use
- One central command that can:
- Explain how to use the plugin with
/statistic - Show you the top 10 on your server for all possible statistics with
/statistic ... top - See those same statistics for any individual player with
/statistic ... player - Look up the combined total of everyone on your server
- Guide you through the available options while you type with an extensive tab-complete feature
- See the output in a readable format with hover-text for more info
- Share statistics in chat with a click
- Explain how to use the plugin with
- One central command that can:
-
No set-up required
- Works regardless of how long your server has existed
- Data is retrieved directly from existing playerfiles — no database needed
-
PlaceholderAPI support
- Placeholders are added in a separate expansion, found on GitHub or via
/papi ecloud download PlayerStats
- Placeholders are added in a separate expansion, found on GitHub or via
-
Safe & Fast
- Uses multi-threading to ensure server performance doesn't suffer
- Players cannot crash the server by spamming commands
-
Customizable
- Choose which range of units to display time-, damage- and distance-based statistics in
- Automatically translate statistics to the language of the client
- Festive formatting, rainbow mode
- Only show statistics for whitelisted players / exclude banned players
- Exclude specific players with
/statexclude - Limit who can share statistics and how often
- Limit statistics based on when a player last joined
- Custom colors including hex colors
- Additional style options (italics, etc.)
⚠️ Note: Permissions have changed from the original plugin!
| Permission | Description | Default |
|---|---|---|
playerstatsremake.stat |
Use /statistic |
false |
playerstatsremake.share |
Share statistics in chat | false |
playerstatsremake.reload |
Reload the config with /statreload |
OP only |
playerstatsremake.exclude |
Exclude players with /statexclude |
OP only |
Note: This fork uses a different package path than the original. If you were using the original PlayerStats API, update your imports.
<!-- In your pom.xml -->
<dependency>
<groupId>com.fernsehheft</groupId>
<artifactId>PlayerStatsRemake</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>To get an instance of the API:
// Import from the new package
import com.fernsehheft.playerstatsremake.api.PlayerStatsRemake;
PlayerStatsRemake api = PlayerStatsRemake.getAPI();// Listen to stat calculation results (e.g. send to Discord)
@EventHandler
public void onStatCalculated(StatCalculatedEvent event) {
String result = event.getStatResult().formattedString();
CommandSender requester = event.getRequester();
// send to Discord, log it, etc.
}
// Cancel stat sharing
@EventHandler
public void onStatShared(StatSharedEvent event) {
event.setCancelled(true); // prevent broadcast to all players
// send to a specific channel instead
}
If you were using the original PlayerStats plugin, note these changes:
| What | Original | PlayerStatsRemake |
|---|---|---|
| Plugin name | PlayerStats |
PlayerStatsRemake |
| Package | com.artemis.the.gr8.playerstats |
com.fernsehheft.playerstatsremake |
| API class | PlayerStats.getAPI() |
PlayerStatsRemake.getAPI() |
| Permissions | playerstats.* |
playerstatsremake.* |
| Java version | 16 | 21 |
| Server API | Spigot | Paper (Spigot compatible) |
- Original Plugin: PlayerStats by Artemis_the_gr8 — all original design, concept and implementation
- This Fork: Maintained by Fernsehheft & Djtmk1
- License: MIT — see LICENSE for details
