Spellbook

The Spellbook is the in-game menu where a player sees every spell they've learned. Active spells can be cast or bound directly from it. Open it with /spellbook.

Overview

The Spellbook lists a player's learned spells. Active spells (those with a ~onUse trigger) can be cast straight from the menu; passive spells are shown for reference. Its behavior is configured in config-spells.yml under Configuration.Spellbook.

Casting and Binding

  • Left-click an active spell to cast it (requires AllowCasting).
  • Right-click an active spell to bind it to a quickcast slot. This is only offered when player bindings are enabled and the spell has Bindable: true.

Passive spells, and any spell whose trigger is not ~onUse, are display-only.

Configuration

Configuration:
  Spellbook:
    OpenSound: item.book.page_turn 1 0.9 PLAYER
    AllowCasting: true
    CloseOnCast: true
    ShowPassives: true
    OrderPassivesLast: true
Option Description Default
OpenSound Sound played when the Spellbook opens. Standard Mythic sound line (sound volume pitch source). item.book.page_turn 1 0.9 PLAYER
AllowCasting Whether left-clicking an active spell in the menu casts it. true
CloseOnCast Whether the menu closes after a successful cast. true
ShowPassives Whether passive spells are listed in the menu. When false, only active spells appear. true
OrderPassivesLast Whether passive spells are sorted after active spells. When false, all spells are sorted together. true

Within each group, spells are sorted alphabetically by spell id.

Reskinning

The Spellbook is a standard MythicMobs custom menu defined in <plugin>/menus/spellbook.yml. Edit that file to change the layout, icons, and decorative elements.

Updated Aug 19, 2026