-
Notifications
You must be signed in to change notification settings - Fork 0
Permissions
This page covers every permission node used by ClickerEconomy, including what it controls, its default value, and example use cases.
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.
Allows the player to view the help menu.
- Default: Everyone
-
Commands:
/clicker help
Allows the player to view their personal statistics (clicks, rank, balance, and multiplier breakdown).
- Default: Everyone
-
Commands:
/clicker stats
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
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>
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:
- The plugin scans all of the player's effective permissions for nodes matching
clicker.multiplier.<number>. - The highest matching value is used as their personal multiplier.
- 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).
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.
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
| 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 |