- You can now use MythicMobs items in all
actions and
conditions that require an item:
Code (YAML):
# Examples
on-break:
if
: toolIsSimilar MythicMobs:SkeletonKingSword
do
: chatMessage <Nice looking sword!
>
on-break
:
- giveItem mm:SkeletonKingSword
# aliases: mythicmobs, mm
- dropItemAtPlayer mm:SkeletonKingSword
- dropItemAtBlock mm:SkeletonKingSword amount=1-3
You can no longer define item amount like this:
Code (YAML):
# NO LONGER SUPPORTED
on-break:
do
: giveItem dirt:5
# Do this instead
on-break:
do
: giveItem dirt amount=5