Back to mods
Bigger Crafting Tables project artwork

CurseForge · Minecraft mod

Bigger Crafting Tables

Adding more Crafting Tables!

Choose a version Pick your version below, then grab the matching file.

This page is having a moment, so a few details may be a little behind.

Quick answer

Which Bigger Crafting Tables release should I use?

Updated last month
Latest stable file BiggerCraftingTables-1.12.2-2.3b.jar
Game version 1.12.2
Loader Forge

Bigger Crafting Tables BiggerCraftingTables-1.12.2-2.3b.jar targets 1.12.2 with Forge. The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server. 1 required mod needs a matching file.

Where it goes

Is Bigger Crafting Tables required on the client, server, or both?

The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Forge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Bigger Crafting Tables BiggerCraftingTables-1.12.2-2.3b.jar need?

BiggerCraftingTables-1.12.2-2.3b.jar. Change the file and its required mods may change too.

1 required mod needs a matching file

Install CraftTweaker, WanionLib first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match.

CraftTweaker Needed by Bigger Crafting Tables BiggerCraftingTables-1.12.2-2.3b.jar
required
No matching file
WanionLib Needed by Bigger Crafting Tables BiggerCraftingTables-1.12.2-2.3b.jar
required
Matching file found Matched file: WanionLib-1.12.2-2.91.jar

We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add Bigger Crafting Tables without breaking your instance.

Built for Bigger Crafting Tables BiggerCraftingTables-1.12.2-2.3b.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use BiggerCraftingTables-1.12.2-2.3b.jar. It targets 1.12.2 with Forge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install CraftTweaker, WanionLib first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match.

  3. 03

    Put it on the correct side

    The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside BiggerCraftingTables-1.12.2-2.3b.jar. It opens that exact file at the source.

About this project

What does Bigger Crafting Tables add?

This mod brings more Crafting Tables, 5x5, 7x7, and 9x9.

why would I use these tables? I have Avaritia on my pack!

I agree with you, but, the Dire Crafting Table is super expensive, you agree with this, right?
so, with this mod you have the possibility to create more difficult early game recipes for your players, without making them suffer =P

this mod has it own way to handle recipes, but, before explaining how it works, I first have to explain how Vanilla Crafting Tables recipes works.

every single time that you put an item on an Crafting Tables, it will basically loops through all recipes just to check if one of them matches, but, when you do things like "shift click" to Craft a full Stack, you will notice a "freeze", this happens because it will look out for matching recipes n times (n for Maximum Stack size of the Crafted Item), this is why it freezes, it is super inefficient.

on this mod, every Recipe has what I call it an "Recipe Key", which is determined using the width, height, and the size of the recipe, so, it will have to look out only in the similar recipes.

this hugely reduces the cpu usage when Crafting.

How to create Recipes?

from 1.12.2-1.9 and beyond, Recipes can be created using Creating Tables.

and using CraftTweaker, I created these on the dev stage, so, if someone is looking for a reference, I think this is a good one =P

val iron_ingot = <ore:ingotIron>;

mods.biggercraftingtables.Big.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, null],
	[iron_ingot, iron_ingot, iron_ingot, <minecraft:water_bucket>, null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot]
]);

mods.biggercraftingtables.Big.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, null],
	[iron_ingot, iron_ingot, <minecraft:water_bucket>, null],
	[iron_ingot, iron_ingot, iron_ingot, null]
]);

mods.biggercraftingtables.Big.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot]
]);

mods.biggercraftingtables.Big.addShapeless(<minecraft:iron_block>, [iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot]);

mods.biggercraftingtables.Huge.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot,       null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot,       null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot,       null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot,       null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot,       null],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot]
]);

mods.biggercraftingtables.Huge.addShapeless(<minecraft:iron_block>, [iron_ingot, iron_ingot, iron_ingot, iron_ingot]);

mods.biggercraftingtables.Huge.addShapeless(<minecraft:iron_block>, [iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot]);

mods.biggercraftingtables.Giant.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot]
]);

mods.biggercraftingtables.Giant.addShaped(<minecraft:iron_block>, [
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot],
	[iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot, iron_ingot]
]);

don't like spoilers? me neither, click here.

CraftTweaker commands:

Big Crafting Table (5x5)

  • mods.biggercraftingtables.Big.addShaped
  • mods.biggercraftingtables.Big.addShapeless
  • mods.biggercraftingtables.Big.remove

Huge Crafting Table (7x7)

  • mods.biggercraftingtables.Huge.addShaped
  • mods.biggercraftingtables.Huge.addShapeless
  • mods.biggercraftingtables.Huge.remove

Giant Crafting Table (9x9) (1.12.2 only)

  • mods.biggercraftingtables.Giant.addShaped
  • mods.biggercraftingtables.Giant.addShapeless
  • mods.biggercraftingtables.Giant.remove

Special thanks to the DungeonDerps team, without them, this mod wouldn't exist!

Project description from CurseForge.

Pick your setup

Bigger Crafting Tables by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

4 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Bigger Crafting Tables versions and loaders

22 of 22 releases match

Looking for an older file? The official CurseForge project page is in Resources.