Added: New config file 'plugins.yml', which contains settings for all plugins HavenBags support.
Added: PvPManager support.
Disable the usage of bags if the player has pvp enabled, or is tagged.
Added: Permissions 'havenbags.player' & 'havenbags.admin'.
Added: Permissions 'havenbags.open.x'
(Replace x with the size of the bag, by the power of 9) Allows server owners to define what ranks can open which sizes. 'havenbags.player' has all by default.
If you dont want players to be able to open bags of all sizes, please define these instead of using 'havenbags.player'.
Added: Encumbering.
Inside weight.yml you can now define if player's should get over-encumbered, when carrying a certain weight percent. Added: weight.yml config entry: 'over-encumber'.
Code (YAML):
# Can players become over-encumbered? over-encumber:
enabled: false
# At what weight % should we encumber players? percent: 80
# What effects should we give the player? # Format: EFFECT:LEVEL # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html effects: - SLOWNESS:1
# Message sent to the player when they become over-encumbered. message: '&cYou feel over-encumbered.'
# Message sent to the player when they stop being over-encumbered. not: '&aYou feel lighter.'
Added: You can now set the inventory title per size.
Added: lang.yml config entries.
Code (YAML):
# Should the inventory title of the bag be per size? # if 'true' this will ignore 'bag-inventory-title' per-size-title: false
bag-inventory-title-9: ''
bag-inventory-title-18: ''
bag-inventory-title-27: ''
bag-inventory-title-36: ''
bag-inventory-title-45: ''
bag-inventory-title-54: ''
Changed: lang.yml comment on 'bag-cannot-use'.
Code (YAML):
# Message sent to the player if they attempt to open a bag bound to another player, # or doesn't have permission to open this size. bag-cannot-use: '&cYou cannot use this bag.'
Fixed: lang.yml entry 'bag-cannot-use' should now correctly parse colors and placeholders.
Removed: Permission 'havenbags.*'.
OPs already have this by default, and for admins you can now use 'havenbags.admin'.