Skip to content

โš™๏ธ Triggers โ€‹

Recipe triggers are recipe options which do not display in the recipe GUI item. They dictate actions which are performed when the recipe is used by a player.

yml
recipes:
    steel-sword:
        ....
        triggers:
        - 'vanilla{type=STICK,amount=3}'

Available Triggers โ€‹

TriggerDescriptionFormat/Example
messageSends a message to the player.message{format="&aYour message here... "}
commandMakes the console perform a command.command{format="give dirt",sender=OP}
- Available senders: PLAYER, CONSOLE, OP
soundBroadcasts a sound to the player.sound{sound=<SOUND_NAME>;volume=<VOLUME>;pitch=<PITCH>}
vanillaGives a vanilla item to the player.vanilla{type=DIAMOND;amount=3}
mmoitemGives an mmoitem to the player.mmoitem{type=SWORD;id=FALCON_BLADE;amount=1}
mmskillCasts a MythicMobs skill.mmskill{id=MythicMobsSkillInternalName}
experienceGives the player MMOCore experience.exp{profession=<PROFESSION>;amount=<AMOUNT>}

Powered by VitePress