
CraftControl is an easy-to-use plugin which allows you to control what items players can craft and smelt by using permissions.
Development builds of this project can be acquired at the provided continuous integration server. These builds have not been approved by the BukkitDev staff. Use them at your own risk.
A list of Bukkit material names/items can be found at http://jd.bukkit.org/rb/apidocs/org/bukkit/Material.html
Protip You can negate permissions for certain items. For example:
permissions:
- craftcontrol.craft.*
- -craftcontrol.craft.DIAMOND_SWORD
The above will allow a player to craft all types of item apart from a diamond sword. The same can be done for a whitelist of items too:
permissions:
- -craftcontrol.craft.*
- craftcontrol.craft.DIAMOND_SWORD
You can now add your own custom crafting recipes for your players to use.
To do this, create a file called recipes.yml in the CraftControl folder in your plugins folder.
Here is an example custom recipe:
myAwesomeRecipe:
shape:
- aaa
- saa
- saa
ingredients:
s: Stick
result:
item: DIAMOND_SWORD
amount: 1
enchantments:
- { type: DAMAGE_ARTHROPODS, level: 3 }
- { type: KNOCKBACK, level: 2 }