Documentation Guide

RPG Examples Cookbook

Copy-pasteable examples for MythicMobs, Quests, and Skills.

⚔️ RPG Examples Cookbook

Use these examples to quickly link your RPG events to immersive cinematic scenes.

1. The Epic Boss Intro (MythicMobs)

Trigger a dialogue when a player encounters a boss.

How to use:

  1. Open your MythicMobs YAML file.
  2. Locate the top-level ID (e.g., BoneKing:).
  3. Set the type to MYTHIC_INTERACT and use that ID in the value.
yaml
boss_intro:
  title:
    en: "The Bone King Awakens"
  texts:
    en: "Who dares disturb my thousand-year slumber? Your soul shall be mine!"
  voice-id: "pNInz6obpg8ndMsc7H8p" # Deep villainous voice
  display-mode: BOSSBAR
  trigger:
    type: MYTHIC_INTERACT
    value: "BoneKing" # Matches your MythicMob Internal Name

2. Death Cinematic (MythicMobs)

Trigger a final goodbye when the boss is defeated.

How to use:

  • Works the same as Interact, but set the type to MYTHIC_DEATH.
  • AxLore will automatically detect which player got the killing blow.
yaml
boss_death:
  title:
    en: "The King Falls"
  texts:
    en: "Finally... darkness... take my crown, mortals. It is cursed anyway..."
  display-mode: HOLOGRAM
  trigger:
    type: MYTHIC_DEATH
    value: "BoneKing"

3. Quest Accepted (Quests)

Add flair to the moment a player takes on a dangerous mission.

How to use:

  1. Open your Quest editor or config.
  2. Copy the Title of the quest exactly.
  3. Set the type to QUEST_START (or QUEST_COMPLETE for endings).
yaml
quest_start:
  title:
    en: "A Hero's Journey"
  texts:
    en: "You have accepted the quest to clear the dark forest. Be brave, traveler."
  trigger:
    type: QUEST_START
    value: "Clear the Forest" # Matches your Quest Title exactly

4. Skill Level Milestone (AuraSkills/McMMO)

Congratulate the player for their hard work.

How to use:

  • Use the format skill:level.
  • For McMMO, use the English skill name (e.g., unarmed, mining).
  • For AuraSkills, use the internal skill ID (e.g., agility, combat).
yaml
master_miner:
  title:
    en: "Master of the Deep"
  texts:
    en: "Your pickaxe strikes with the precision of a master. Level 50 reached!"
  trigger:
    type: SKILL_LEVEL
    value: "mining:50"

Pro Tip Remember to run `/axlore generate ` after adding these to your `scenes` folder to generate the high-quality AI audio.

Was this helpful?

Help us improve our documentation.(Anonymous & any language)