Soulbound items
This version adds soulbound items, which are automatically returned to the user's inventory upon death. Two things are necessary to make something soulbound:
First, make the item soulbound in it's yml file by setting "soulbound" to true
name: myCoolItem
soulbound: true
item:
# item info...
Then, give the player permissions. To give them permission for a specific item, give them the permission customitems.soulbound.[myCustomItemIDHere]. To give them permission for an entire category, give them the permission customitems.soulbound.category.[myCustomItemCategoryHere].
Check out the wiki for more info:
https://github.com/jojodmo/CustomItems/wiki/Permissions#customitemssoulbounditem
Support for Turkish, minor bug fixes
This version adds support for the Turkish language and brings some minor bug fixes with breaking custom blocks
give @a, and list <category>
This version makes some improvements to a some commands.
You can now use /cui give @a [amount] to give all players on the server [amount] of
The permission for this command is customitems.giveall instead of the normal customitems.give permission
This version also adds the /cui list command to directly open up the item list for a category
Improvements & Bug Fixes
This version brings some improvements for all versions, and makes some bug fixes for servers running 1.8
Block Storage Improvements
This version makes some bug fixes and improvements with block storage!
ifWeather and ifWorldTime conditions
This version adds new "ifWeather" and "ifWorldTime" conditions! Check out the wiki at https://github.com/jojodmo/CustomItems/wiki/Handlers-and-Actions for more info!
MC 1.12 Improvements
This version make some improvements for Minecraft 1.12 and below
Item subfolders!
Backed by popular demand, this version adds support for category folders in the items folder! You can now make subfolders within your CustomItems/items folder.
If you don't set "category" in the item yml file, then the item will be put into whatever category the folder is called. For example, if you have a bunch of item yml files in the "items/coolThings" folder, all of those items will be put in the "coolThings" folder, unless you set "category" in the yml file.
Improvements for "itemBreak"
This version makes some fixes for the "itemBreak" action for items with custom durability
Improvements for setBlockType
"setBlockType" now checks permission to build by default! To disable this, set "force" to "true"