Skip to content

Commands

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

Commands

All commands are accessed through /clicker. Running /clicker with no arguments opens the clicker GUI.

Tip: All commands have full tab completion with contextual suggestions.


General Commands

/clicker

Opens the clicker GUI where you can click to earn currency.

  • Permission: clicker.use
  • Note: Can only be used by players (not console). Requires Vault to be enabled.

/clicker help

Displays all available commands. Admin-only commands are only shown to players with clicker.admin.

  • Permission: clicker.help

/clicker top [page]

Shows a paginated leaderboard of all players sorted by total clicks.

  • Permission: clicker.use
  • Arguments:
    • page (optional) — Page number to view. Defaults to 1. The number of entries per page is controlled by leaderboard.entries-per-page in config.yml (default: 10).

/clicker stats

Displays your personal statistics including total clicks, leaderboard rank, Vault balance, and a full multiplier breakdown (personal × global = effective).

  • Permission: clicker.stats
  • Note: Can only be used by players.

/clicker placeholders

Lists all available %clicker_*% placeholder tokens that can be used in lang.yml and with PlaceholderAPI.

  • Permission: clicker.placeholders

Multiplier Commands

/clicker multiplier or /clicker multiplier get

Shows the current global multiplier and its remaining duration. If run by a player, also shows your personal and effective multipliers.

  • Permission: clicker.use

/clicker multiplier set <value> [duration]

Sets the server-wide global multiplier.

  • Permission: clicker.admin
  • Arguments:
    • value — The multiplier value (must be greater than 0).
    • duration (optional) — How long the multiplier lasts. Omit for permanent. Duration format: | Format | Example | Meaning | |--------|---------|---------| | <number>s | 30s | 30 seconds | | <number>m | 5m | 5 minutes | | <number>h | 2h | 2 hours | | <number>d | 1d | 1 day | | Raw number | 3600 | 3600 seconds |

Examples:

/clicker multiplier set 2.0          — Sets a permanent 2x multiplier
/clicker multiplier set 3.0 1h       — Sets a 3x multiplier for 1 hour
/clicker multiplier set 1.5 30m      — Sets a 1.5x multiplier for 30 minutes

Timed multipliers count down in real time, persist across server restarts, and broadcast a configurable message to the server when they expire.


/clicker multiplier reset

Resets the global multiplier back to the base value defined by global-multiplier in config.yml (default: 1.0). Also accepts clear as an alias.

  • Permission: clicker.admin

Click Management Commands (Admin)

/clicker clicks give <player> <amount>

Adds the specified number of clicks to a player's total count.

  • Permission: clicker.admin
  • Arguments:
    • player — Target player name (must have joined the server before).
    • amount — Number of clicks to add (must be greater than 0). Example:
/clicker clicks give Notch 1000

/clicker clicks set <player> <amount>

Sets a player's total click count to an exact value.

  • Permission: clicker.admin
  • Arguments:
    • player — Target player name.
    • amount — Click count to set (must be greater than 0). Example:
/clicker clicks set Notch 5000

/clicker clicks reset <player>

Resets a player's click count to 0.

  • Permission: clicker.admin
  • Arguments:
    • player — Target player name. Example:
/clicker clicks reset Notch

Configuration Command

/clicker reload

Hot-reloads config.yml and lang.yml without restarting the server. Also re-initializes the Vault economy hook.

  • Permission: clicker.admin

Permissions Summary

Permission Description Default
clicker.use Open the clicker GUI and use basic commands Everyone
clicker.help View /clicker help Everyone
clicker.stats View personal stats with /clicker stats Everyone
clicker.admin Access to reload, multiplier set/reset, and clicks management OP
clicker.placeholders View the placeholder reference list OP
clicker.multiplier.<value> Grants a personal multiplier (e.g. clicker.multiplier.2) None

How personal multipliers work: Assign permission nodes like clicker.multiplier.1.5 or clicker.multiplier.2 through your permissions plugin (e.g. LuckPerms). The highest value a player has is used and stacks multiplicatively with the global multiplier.