Releases: byteful/LevelTools
Releases · byteful/LevelTools
[v1.2.3.2] Fixed 1.8 actionbar bug.
Changes
- Fixed bug in Spigot 1.8 where the API's actionbar method didn't exist.
- Switched to XSeries actionbar utils.
[v1.2.3.1] Fixed BlockDataManager SQLite bug
Changes
- Fixed SQLite bug with RedLib's BlockDataManager
- Updated RedLib to v6.5.1
[v1.2.3] Utility Commands
Changes
- Added commands:
- /leveltools reload : Reloads config
- /leveltools help : Shows all cmds
- /leveltools xp : Sets item in hand's XP to provided XP.
- /leveltools level : Sets item in hand's level to provided level.
- /leveltools levelup : Increments the item in hand's level one up.
- Added more config messages:
# Configuration for messages.
messages:
no_permission: "&cYou do not have permission to execute this command!"
successful_reload: "&aSuccessfully reloaded LevelTools!"
successfully_executed_action: "&aSuccessfully executed action for item in hand."
item_not_tool: "&cThe item in hand is not supported by LevelTools!"[v1.2.2] Add attribute reward type.
Changes:
- New config option
- Attribute reward type
- Minor fixes
# Set to true if leveled items should show attributes. Recommended to keep this true to prevent "lore spam".
hide_attributes: true[v1.2.1.2] Fixed bug with anvils and leveled items.
Changes
- Fixed bug where anvils wouldn't combine levels and XP with leveled items.
- Fixed bug where lore would disappear when repairing/combining leveled items in anvils.
- Added new config value:
# What action should be done when combining items in an anvil?
# Modes: "HIGHER_OF_BOTH" (Takes level and xp of higher level item), "LOWER_OF_BOTH" (Takes level and xp of lower level item), OR "ADD_BOTH" (Adds the level and XP of both items)
anvil_combine: "ADD_BOTH"[v.1.2.1.1] Fixed cancellable state in BlockBreakEvent.
Fixed a bug where the cancelled state as true would make no difference to given XP/levels.
This would conflict with anti-grief plugins such as WorldGuard. Bug reported in Issue #7.
[v1.2.1] Add 1.18 support.
Changes
- Added support for 1.18.
- PDC support for 1.14+ (might be better than using NBT, since it's in the Bukkit API)
[v1.2.0.1] Fixed major bug with "MULTIPLY" mode.
Changes
- Fixed major bug in new "MULTIPLY" mode. (NumberFormatException)
- Cleaned up util code a bit.
[v1.2.0] Refactored config to support more advanced XP level increase functions.
Changes
- Refactored config
- Improved algorithm for XP level increase.
New Config Changes
# @Deprecated
#level_multiplier: 100.0
# The amount of XP needed to get from level 0 to level 1.
level_xp_start: 100.0
# The increase in amount of XP needed to get from level to level.
# Ex: If we are on level 1 and the level_xp_start is on 100.0 and the mode is ADD with 100.0, it would take 200.0 XP to get to level 2 from level 1.
# Ex 2: If we are on level 1 and the level_xp_start is on 100.0 and the mode is MULTIPLY with 2.0, it would take 200.0 XP to get to level 2 from level 1.
level_xp_increase:
mode: "ADD" # Modes: "ADD" or "MULTIPLY"
amount: 100.0[v1.1.0.2] Cleaned up redundant code and renamed DB file.
Changes
- Removed redundant code for datablock system.
- Renamed 'blocks.db' to 'player_placed_blocks.db'. (Added support to migrate old file names to new one)