levels yml - magemonkeystudio/fabled GitHub Wiki

🧮 levels.yml

The levels.yml file defines how much experience is required to reach each level if use-levels: true is set in config.yml.

File location:

/plugins/Fabled/levels.yml

📊 Level Requirements

This file maps each level number to the amount of XP required to reach the next level.

level-exp:
  1: 0
  2: 100
  3: 250
  4: 450
  5: 700
  6: 1000
  7: 1350
  ...
  • The values do not stack — each value is the XP required for that level, not cumulative XP
  • XP requirements must increase or plateau — they cannot decrease with higher levels
  • XP must be defined up to the maximum level set in config.yml (max-level)

🧠 Notes

  • This file is only used when:

    use-levels: true
    

    in the Experience: section of config.yml

  • If use-levels: false, the plugin will fall back to:

    • a formula based on x, y, and z
    • or a custom expression using custom-formula

🔗 Related Pages