config skill bar - magemonkeystudio/fabled GitHub Wiki

🎯 Config: Skill Bar

The Skill Bar section of config.yml is only used if you have selected BARS as your casting mode.
If you are not using that mode, this section will have no effect and should remain disabled.

File location:

/plugins/Fabled/config.yml

⚙️ Skill Bar Settings

enabled: true|false

Enables or disables the skill bar system (only applies when using the BARS casting mode).


show-cooldown: true|false

If true, skill icons in the bar will visually indicate when they are on cooldown.


empty-icon

The item used in the skill bar for unassigned skill slots:

empty-icon:
  material: 'PUMPKIN_SEEDS'
  durability: '0'
  data: '0'
  text: '&7Unassigned'

layout

Defines which slots can contain skills and which ones are locked by default.
Players can customize skill assignments in unlocked slots, but cannot unlock locked ones.

layout:
  1:
    skill: 'true'
    locked: 'false'
  2:
    skill: 'true'
    locked: 'false'
  3:
    skill: 'true'
    locked: 'false'
  4:
    skill: 'true'
    locked: 'false'
  5:
    skill: 'true'
    locked: 'false'
  6:
    skill: 'false'
    locked: 'false'
  7:
    skill: 'false'
    locked: 'false'
  8:
    skill: 'false'
    locked: 'false'
  9:
    skill: 'false'
    locked: 'false'

🔗 Related Pages