
SimpleStats is a plugin for spigot servers that tracks and store simple player combat data (SQLite). The /stats command is fully configurable so you can add placeholders from other plugins.
This plugin tracks 4 values. Player kills, deaths, killstreak and max killstreak.
PlaceholderAPI is required so you must install it to be able to use this plugin. (This plugin is coded with the 1.19.2 API but it should work in older versions)
Placeholders:
Code (Text):
Kills: %simplestats_kills%
Deaths: %simplestats_deaths%
Killstreak: %simplestats_killstreak%
Max Killstreak: %simplestats_maxkillstreak%
Permissions:
Code (Text):
- /stats | Permission: "simplestats.command"
- /stats (player) | Permission: "simplestats.command.others"
Configuration (settings.yml)
:
Code (Text):
# true - killstreak system works. | false - killstreak system is disbled.
killstreak-enable: true
# This message is sent when a killstreak point is reached.
killstreak-msg: '&6%player_name% &7is on a killstreak of &6%simplestats_killstreak% kills&7.'
# Add or remove numbers from 'killstreak-points' to set when you want a killstreak to be announced.
killstreak-points:
- 3
- 5
- 10
- 15
- 20
- 30
- 40
- 50
- 100
# Messages sent when you run /stats command.
player-stats:
- '&7&m '
- '&6&l%player_name%''s Stats:'
- ' &eKills: &7%simplestats_kills% kills'
- ' &eDeaths: &7%simplestats_deaths% deaths'
- ' &eActual Killstreak: &7%simplestats_killstreak% kills'
- ' &eMax Killstreak: &7%simplestats_maxkillstreak% kills'
- '&7&m '
Please, don't use the review system to ask for help.