EssentialsX

EssentialsX

2M Downloads

Command Cooldowns

dylanjcq opened this issue ยท 2 comments

commented

Hello, I have a problem with the cooldown configs. I looked for answers on the internet but the various solutions and posts I found did not work for me. I cannot find the correct writing format.

No bypass, I tested different formats like these are no results.

command-cooldowns:
beezooka: 100
extinguish: 20
repair: 900
skull: 18000

I also try formats like the ones below.

  • "beezooka: 100"
    "'extinguish': 20"
    'repair': 900
    skull: 18000

configessentialsx.txt

commented

UP

commented

Your cooldowns need to be indented 2 spaces under the command-cooldowns key. Right now yours look like this:

command-cooldowns:
beezooka: 100
extinguish: 20
repair: 900
skull: 18000

while the correct format is as follows (note the 2 space gap at the start of each line):

command-cooldowns:
  beezooka: 100
  extinguish: 20
  repair: 900
  skull: 18000

Indenting each of your entries by 2 spaces should solve your issue. If you require further help with this issue, we recommend joining the MOSS Discord server for easier access to support for issues like these.