Additions:
- Added scoreboards! You can now customize a scoreboard per extension, and display fancy data on it.
PHP:
"scoreboard"
:
{
"enabled"
:
true
,
"title"
:
"&2&lSPLEGG"
,
"text"
:
{
"6"
:
"&ePlayers Alive: &7{arena_playercount}"
,
"5"
:
"&eDouble Jumps: &7{double_jumps}/5"
,
"4"
:
""
,
"3"
:
" www.example.com"
}
}
- Added double jumps to all extensions! You can customize all the following:
1. Whether are double jumps enabled or not
2. The default amount of double jumps a player has per game
3. Cooldown between jumps
4. Sound that is played on jumps
5. Item in inventory that, when left/right-clicked, double jumps the player. You can customize an item for when they can double jump, and an item when they cannot.
6. (most importantly) The velocity they are launched for when they double jump. This is extremely customizable.
PHP:
"doubleJump"
:
{
"enabled"
:
true
,
"defaultAmount"
:
5
,
"cooldownBetween"
:
2
,
"playSoundOnJump"
:
"ENTITY_WITHER_SHOOT"
,
"doubleJumpItems"
:
{
"enabled"
:
true
,
"slot"
:
2
,
"onAvailable"
:
{
"type"
:
"feather"
,
"count"
:
1
,
"enchantments"
:
[
"infinity:1"
]
,
"displayName"
:
"&a&lDouble Jump"
,
"lore"
:
[
]
,
"itemFlags"
:
[
"HIDE_ENCHANTS"
]
,
"unbreakable"
:
false
}
,
"onUnavailable"
:
{
"type"
:
"feather"
,
"count"
:
1
,
"enchantments"
:
[
"infinity:1"
]
,
"displayName"
:
"&c&lDouble Jump"
,
"lore"
:
[
]
,
"itemFlags"
:
[
"HIDE_ENCHANTS"
]
,
"unbreakable"
:
false
}
}
,
"launchVelocity"
:
{
"x"
:
0
,
"y"
:
1
,
"z"
:
0
,
"usePlayerOriginalVector"
:
false
,
"multiply"
:
1
,
"divide"
:
1
,
"addition"
:
0
,
"subtract"
:
0
}
}
Bug fixes:
- Fixed a bug where bow spleef arenas would fail to load/function sometimes due to a NullPointerException
Compatibility:
- Added better support for Multiverse-Core and multi-world arena management