WorkbenchPlus - Kotori316/QuarryPlus GitHub Wiki
-
Right click to open gui.
-
Move items from your inventory. It can accept over 64 for 1 stack.
-
Click the item you want to create.
-
Wait for some minute and item will be interted or droped.
-
Click twice item to create it continuously.
-
Right click crafting item to stop working.
-
Deprecated. Use Json or CraftTweaker to modify recipe.
You can add and remove recipes with IMC.
// Modify recipe with IMC.
class ModClass{
//From 2 Gold ingots and 10 Iron ingots to Diamond
public void addRecipe(){
NBTTagCompound tag = new NBTTagCompound();
NBTTagList list = new NBTTagList();
list.appendTag(new ItemStack(Items.DIAMOND).writeToNBT(new NBTTagCompound()));
list.appendTag(new ItemStack(Items.GOLD_INGOT, 2).writeToNBT(new NBTTagCompound()));
list.appendTag(new ItemStack(Items.IRON_INGOT, 10).writeToNBT(new NBTTagCompound()));
tag.setTag("IMC_AddRecipe", list);
tag.setInteger("energy", 2000);
FMLInterModComms.sendMessage("quarryplus", "IMC_AddRecipe", tag);
}
//Remove Diamond recipe
public void removeRecipe(){
NBTTagCompound tag = new NBTTagCompound();
new ItemStack(Items.DIAMOND).writeToNBT(tag);
FMLInterModComms.sendMessage("quarryplus", "IMC_RemoveRecipe", tag);
}
}
- You can add and remove recipes with Json and CraftTweaker. Just place Json under
config/quarryplus/recipes
.