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
- Download MythicMobs from the official release page.
- Drop the JAR into
plugins/. - Start the server once so the configuration folder is created.
- 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.