Guides

Getting Started

Install MythicMobs and create your first custom mob.

Welcome to the MythicMobs documentation. This site is generated from the plugin’s source annotations, so every mechanic, condition, targeter and AI goal listed here is guaranteed to match the running JAR.

Install the plugin

  1. Download MythicMobs from the official release page.
  2. Drop the JAR into plugins/.
  3. Start the server once so the configuration folder is created.
  4. Restart the server (or /mm reload).

Your first custom mob

Create plugins/MythicMobs/Mobs/MyMobs.yml:

SkeletonKing:
  Type: WITHER_SKELETON
  Display: '&6Skeleton King'
  Health: 200
  Damage: 12
  Skills:
  - message{m="The king awakens!"} @PlayersInRadius{r=20} ~onSpawn
  - setfaction{faction=undead} @self ~onSpawn

Reload with /mm reload, then /mm mobs spawn SkeletonKing in-game.

Where to go next

  • Browse every available action under Mechanics in the sidebar.
  • Use Targeters to choose who a mechanic affects.
  • Add Conditions to gate behavior.
  • See the AI Goals reference for custom mob behavior.
Generated from @Mythic* annotations in the MythicMobs source.