WorkbenchPlus - Kotori316/QuarryPlus GitHub Wiki

How to use

  1. Right click to open gui. s1

  2. Move items from your inventory. It can accept over 64 for 1 stack. s2

  3. Click the item you want to create. s3

  4. Wait for some minute and item will be interted or droped.

Tips

  • Click twice item to create it continuously. s4

  • 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.
⚠️ **GitHub.com Fallback** ⚠️