Damage reduction after 24hrs
Hey,

Ive been reading the other help threads in here and I dont know what im doing wrong but im trying to setup the plugin so there anti raid protection for 24 hrs, then degrade in protection after that every 2 hours..  Could you give me a hand? currently I have the following for 24hr protection.

"damageScale": {
"1": 0,
"24": 1​


thanks
"damageScale": {
  "1": 0,
  "24": 1​,
  "26": 1.2,
  "28": 1.4,
  "30": 1.6,
  // etc
}

First Example: Start from 0%, then increase to 100% after 24h, and later periodically increase over 100% damage (e.g. cleaning house).

"damageScale": {
  "1": 0,
  "24": 0.2,
  "26": 0.4,
  "28": 0.6,
  "30": 0.8,
  // etc
}

Second Example: Start from 0% and then periodically increase from 0% after 24h

Thank you very much! I’ll give this a go today