Skip to content

Releases: byteful/LevelTools

[v1.3.4] Developer API fixes and blacklist/whitelist fixes

17 Jun 17:23
Compare
Choose a tag to compare

Changes

  • Fixed LevelToolsLevelIncreaseEvent (wasn't being called)
  • Fixed potential issues with blacklists and whitelists in config
  • Updated dependencies

[v1.3.3] New configuration additions

12 May 01:06
Compare
Choose a tag to compare

Changes:

  • Added player-opcommand reward type.
  • Added {xp_formatted} and {max_xp_formatted} to fix weird issues with large numbers.
  • Fixed grammatical and spelling errors.
  • Cleaned up code.

[v1.3.2] Fixed bug with XP ranges.

06 Dec 04:50
Compare
Choose a tag to compare

Changes:

  • Fixed bug with XP ranges. Min and max now can be set to 0 and can be swapped (auto-fixed by LevelTools)
  • Cleaned up utility code.

[v1.3.1] Fixed whitelist/blacklist bug.

18 Oct 00:09
Compare
Choose a tag to compare

Changes:

  • Fixed whitelist/blacklist bugs.
  • New update checker API.

[v1.3.0] Added max level in config.

29 Aug 03:17
Compare
Choose a tag to compare

Changes

  • Added max level option in config.

[v1.2.8] Added 'enchant3' and blacklist/whitelist support.

10 Jul 20:45
Compare
Choose a tag to compare

Changes

  • 'enchant3' as a new reward type (increases the level of existing enchantment on the item)
  • Entity and block lists can now be both whitelists and blacklists.
# A list that prevents/allows the blocks listed from giving XP on break.
block_list_type: "BLACKLIST" # Types: WHITELIST, BLACKLIST (blacklist by default)
block_list:
  - "FIRE"
  - "SOUL_FIRE"
  - "CRIMSON_FUNGUS"
  - "BROWN_MUSHROOM"
  - "RED_MUSHROOM"
  - "CRIMSON_ROOTS"
  - "GRASS"
  - "TALL_GRASS"
  - "SEAGRASS"
  - "TORCH"
  - "FERN"
  - "LARGE_FERN"
  - "SUNFLOWER"
  - "CORNFLOWER"

# A list that prevents/allows the entities listed from giving XP on kill.
entity_list_type: "BLACKLIST" # Types: WHITELIST, BLACKLIST (blacklist by default)
entity_list:
  - "PLAYER"

# - "enchant3" : Increases the existing level value of the enchant. (Ex: "enchant3 efficiency 1")

[v1.2.7] Improved lore mechanics.

10 Jun 06:54
Compare
Choose a tag to compare

Changes

  • Improved lore mechanics. LevelTools no longer overrides lore.
  • Fixed bug with player-command
  • Reformatted code

[v1.2.6] Fix buggy check with breaking blocks and add command.

30 May 04:46
Compare
Choose a tag to compare

Changes

  • Fixed buggy check in BlockBreakEvent's listener. This check wasn't compatible with certain server setups. Reported by Hxtch#4275.
  • Added /leveltools reset command. Requested by Caffeinated Spartan#6082.

[v1.2.5.1] Remove recently added config system

16 May 00:31
Compare
Choose a tag to compare

Changes

  • Recently added config system seems to override certain config changes.

[v1.2.5] Update config and lore systems.

15 May 21:11
Compare
Choose a tag to compare

Changes

  • Dynamic config updater to future-proof config changes.
  • Allow users to enable/disable lore overriding.
  • Cleaned up config a little bit by organizing stuff.