Wiki/Permissions

Statistics implements a variety of permissions that allow you to customize what stats are tracked.

Note: You are required to have a permissions plugin that supports negative nodes.

Tracking permissions

The permissions are more or less self-explanatory.

stats.track:
    description: Track the player statistics
    default: true
    children:
      stats.track.block: true
      stats.track.item: true
      stats.track.player: true
      stats.track.death: true
      stats.track.hook: true
  stats.track.block:
    description: Track player's block statistics
    children:
      stats.track.block.break: true
      stats.track.block.place: true
  stats.track.item:
    description: Track player's item statistics
    children:
      stats.track.item.drop: true
      stats.track.item.pickup: true
      stats.track.item.use: true
      stats.track.item.break: true
      stats.track.item.craft: true
      stats.track.item.anvil: true
      stats.track.item.misc: true
  stats.track.player:
    description: Track some basic player statistics
    children:
      stats.track.player.distances: true
      stats.track.player.inventory: true
      stats.track.player.misc: true
  stats.track.death:
    description: Track death and kill statistics
    children:
      stats.track.death.pvp: true
      stats.track.death.pve: true
      stats.track.death.other: true
  stats.track.hook:
    description: Track data from plugin hooks
    children:
      stats.track.hook.vault: true
  stats.cmd:
    description: Access to all statistics commands
    default: op
    children:
      stats.cmd.book: true
      stats.cmd.scoreboard: true
      stats.cmd.debug: true

All permissions above are granted to players by default. If you wish to disable tracking for some players, give them the corresponding negative node. For example, `-stats.track.death` indicates that the player's deaths will not be tracked.

Command permissions

For the full commands list, visit the Commands page.

  • /stats book stats.cmd.book
  • /stats scoreboard stats.cmd.scoreboard
  • /stats help stats.cmd.help
  • Other commands stats.cmd.debug