⏱️Custom Cooldowns

Enabling custom cooldowns

CustomCooldowns: 'false'

You can enable this setting inside of the features.yml. You can use custom cooldowns for players with specific permissions. This can be used to give players a shorter or even longer cooldown than the default one.

Adding custom cooldowns

You can add / edit the custom cooldowns ./extras/custom_cooldowns.yml

Setup intructions:

  • Each custom cooldown requires:

    • Name

    • Permission

    • Cooldown period

  • Custom cooldowns will override the global and player-specific cooldowns set in the config.yml.

  • Define the cooldown duration in minutes.

Example configuration

The plugin processes configurations from top to bottom, so the highest rank should be listed at the top.

rank_a:
  permission: your.permission1
  cooldown: 1
rank_b:
  permission: your.permission2
  cooldown: 3

Last updated