Minecraft CraftControl mod 2026 download
logo
minecraft mod CraftControl

CraftControl

Game Version: CB 1.7.2-R0.2
Total Downloads: 1,042
Updated: Jan 11, 2014
Created: Jan 6, 2014
Download CraftControlDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
CraftControl-0.0.2 release 12.47 KB Jan 11, 2014 CB 1.7.2-R0.2 566 download CraftControl CraftControl-0.0.2 releaseDownload
CraftControl-0.0.3 beta 14.21 KB May 14, 2014 CB 1.7.2-R0.3 376 download CraftControl CraftControl-0.0.3 betaDownload
CraftControl-v0.0.1 alpha 3.62 KB Jan 6, 2014 CB 1.7.2-R0.2 100 download CraftControl CraftControl-v0.0.1 alphaDownload

Description

Share this:

CraftControl

CraftControl

Introduction

CraftControl is an easy-to-use plugin which allows you to control what items players can craft and smelt by using permissions.

Useful Links

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.

  • Dev Builds (currently broken)
  • Source Code on GitHub

Installation

  • Ensure that you have Java 7 installed
  • Stop the server
  • Drop CraftControl.jar into your plugins folder
  • Start the server
  • Configure your permissions

Permissions

  • craftcontrol.craft.* – allows crafting of all items. This permission is applied to all players by default
  • craftcontrol.craft.[item name] – allows crafting of a single item. [item name] is the name of a Bukkit Material.
  • craftcontrol.smelt.* – allows smelting of all items. This permission is applied to all players by default
  • craftcontrol.smelt.[item name] – allows smelting of a single item. [item name] is the name of a Bukkit Material.

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

Custom Recipes

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 }

Comments

Add a comment