-
Fixed hex color code support for (chat, actionbar, title, bossbar, hologram)
Code (YAML):
chat:
message
: '
#e1642cHex colored message'
-
Now simple functions no longer need the 'do' keyword, instead you can just type them out immediately:
Code (YAML):
# BEFORE
on-break:
do
:
- givePlayer diamond
- sendChat You mined a diamond!
# AFTER
on-break
:
- givePlayer diamond
- sendChat You mined a diamond!
-
Updated all gates to use this new system.
Some features are still missing:
item and block holograms, and hologram rotation.
-
Added
preferred-hologram-supplier option inside
config.yml
Code (YAML):
# The hologram plugin used to create holograms (DecentHolograms, FancyHolograms)
preferred-hologram-provider
: FancyHolograms
-
Added
hologram-styles option inside
config.yml (only for FancyHolograms)
Code (YAML):
# Define custom hologram styles and reuse them anywhere. [1.19.4+ only]
hologram-styles:
default:
view-distance
: 15
update
: 3s
see-through
: true
billboard
: vertical
# fixed, vertical, horizontal, center
alignment
: center
# center, left, right
brightness
: 15
background-color
:
{ red
: 0, green
: 0, blue
: 0
}
# Better system is coming
scale
: x=1 y=1 z=1
shadow
: strength=1 radius=1.5
-
Added a fallback internal hologram implementation which uses invisible ArmorStands, this is only to dispaly the error message: Missing hologram provider. Instead of sending a message to the player.