Skip to content

Permissions

Richie Lee edited this page Jun 2, 2026 · 1 revision

Permissions

This page covers every permission node used by ClickerEconomy, including what it controls, its default value, and example use cases.


Core Permissions

clicker.use

Allows the player to open the clicker GUI with /clicker and earn currency by clicking.

  • Default: Everyone
  • Commands: /clicker, /clicker top [page], /clicker multiplier [get] This is the base permission required to interact with the plugin. Without it, players cannot open the GUI or receive click rewards.

clicker.help

Allows the player to view the help menu.

  • Default: Everyone
  • Commands: /clicker help

clicker.stats

Allows the player to view their personal statistics (clicks, rank, balance, and multiplier breakdown).

  • Default: Everyone
  • Commands: /clicker stats

clicker.placeholders

Allows the player to view the full list of %clicker_*% placeholder tokens available for use in lang.yml and PlaceholderAPI.

  • Default: OP
  • Commands: /clicker placeholders

clicker.admin

Grants access to all administrative commands: reloading config, managing the global multiplier, and modifying player click counts.

  • Default: OP
  • Commands:
    • /clicker reload
    • /clicker multiplier set <value> [duration]
    • /clicker multiplier reset
    • /clicker clicks give <player> <amount>
    • /clicker clicks set <player> <amount>
    • /clicker clicks reset <player>

Personal Multiplier Permissions

clicker.multiplier.<value>

Grants the player a personal click reward multiplier. This stacks multiplicatively with the server-wide global multiplier.

  • Default: None (must be explicitly assigned) How it works:
  1. The plugin scans all of the player's effective permissions for nodes matching clicker.multiplier.<number>.
  2. The highest matching value is used as their personal multiplier.
  3. The personal multiplier is multiplied by the global multiplier to produce the player's effective multiplier.

Effective multiplier = personal multiplier × global multiplier

Examples:

Permission Node Personal Multiplier
clicker.multiplier.1.5 1.5x
clicker.multiplier.2 2.0x
clicker.multiplier.2.5 2.5x
clicker.multiplier.3 3.0x

If a player has no clicker.multiplier.* permission, their personal multiplier defaults to 1.0x (no bonus).


Setting Up Multipliers with LuckPerms

You can assign multiplier permissions through any permissions plugin. Here are some examples using LuckPerms:

Give a player a 2x multiplier:

/lp user <player> permission set clicker.multiplier.2

Give an entire group a 1.5x multiplier:

/lp group vip permission set clicker.multiplier.1.5

Create a tiered rank structure:

/lp group default permission set clicker.multiplier.1
/lp group vip permission set clicker.multiplier.1.5
/lp group mvp permission set clicker.multiplier.2
/lp group elite permission set clicker.multiplier.3

Since the plugin always picks the highest value, players who inherit permissions from multiple groups will automatically receive the best multiplier available to them.


clicker.multiplier.*

This is a wildcard node registered in plugin.yml. It does not grant any automatic multiplier — it exists only as a parent node. Assign specific numeric nodes (e.g. clicker.multiplier.2) instead.

  • Default: false

Quick Reference

Permission Description Default
clicker.use Open the GUI and use basic commands Everyone
clicker.help View /clicker help Everyone
clicker.stats View personal stats Everyone
clicker.placeholders View placeholder token list OP
clicker.admin All admin commands (reload, multiplier, clicks) OP
clicker.multiplier.<value> Personal reward multiplier None
clicker.multiplier.* Wildcard parent (grants nothing on its own) false

Clone this wiki locally