- In 1.20.5+ you can now set an items max durability
Code (YAML):
generic_pickaxe:
type
: iron_pickaxe
name
: '&7&lGeneric Pickaxe'
max-durability
: 10
- Fixed a bug where setting an items damage/durability would always result in a damage of 10
- You can now use the following internal placeholders in messages and commands:
Code (Text):
{player} -> player's name
{player_id} -> player's unique id
They are compatible with all formatting styles.
- 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
- You can now use ExecutableItems items in all
actions and
conditions that require an item:
Code (YAML):
# Examples
on-break:
if
: toolIsSimilar ExecutableItems:Free_Wifi_Crafting_Table
do
: chatMessage <Nice looking crafting table!
>
on-break
:
- giveItem ei:Free_Wifi_Crafting_Table
# aliases: executableitems, ei
- dropItemAtPlayer ei:Free_Wifi_Crafting_Table
- dropItemAtBlock ei:Free_Wifi_Crafting_Table amount=1-3
- You can now use EcoItems items in all
actions and
conditions that require an item:
Code (YAML):
# Examples
on-break:
if
: toolIsSimilar EcoItems:enchanted_cobblestone
do
: chatMessage <Nice looking cobblestone!
>
on-break
:
- giveItem ec:enchanted_cobblestone
# aliases: ecoitems, ec
- dropItemAtPlayer ec:enchanted_cobblestone
- dropItemAtBlock ec:enchanted_cobblestone amount=1-3
- Typing 'esc' in chat when using an editor would not open back the gui.
- Sending a boss bar message with progress would throw an exception.
- The message delay button was missing the proper instructions/lore.
- Saving a structure now supports items-adder, nexo, and craft-engine blocks.
- Added support for chorus plant
- Added two generators: chorus_plant.yml and small_chorus_plant.yml
- Fixed a bug where block directions up and down result inverted when generator is rotated 180 degrees