|
|
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. Currently, there is no default triggers but you can add some using an addon.
|
|
|
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. Currently, these are the default triggers.
|
|
|
```
|
|
|
recipes:
|
|
|
steel-sword:
|
|
|
....
|
|
|
triggers:
|
|
|
- 'exp{profession=smithing,amount=5}'
|
|
|
- 'vanilla{type=STICK,amount=3}'
|
|
|
```
|
|
|
|
|
|
|
... | ... | @@ -13,4 +13,7 @@ recipes: |
|
|
| message | Sends a message to the player. | {{{message{format="&aYour message here... "}}}} |
|
|
|
| command | Makes the console perform a command. | {{{command{format="tellraw @a {"text":"Hello!"}"}}}} |
|
|
|
| experience | Gives player experience. | {{{exp{profession=<PROFESSION>;amount=<AMOUNT>}}}} |
|
|
|
| sound | Broadcasts a sound to the player. | {{{sound{sound=<SOUND_NAME>;volume=<VOLUME>;pitch=<PITCH>}}}} | |
|
|
\ No newline at end of file |
|
|
| sound | Broadcasts a sound to the player. | {{{sound{sound=<SOUND_NAME>;volume=<VOLUME>;pitch=<PITCH>}}}} |
|
|
|
| vanilla | Gives a vanilla item to the player. | {{{vanilla{type=DIAMOND;amount=3}}}} |
|
|
|
| mmoitem | Gives an mmoitem to the player. | {{{mmoitem{type=SWORD;id=FALCON_BLADE;amount=2}}}} |
|
|
|
| mmskill | Cast a MythicMobs skill. | {{{mmskill{id=MythicMobsSkillInternalName}}}} | |