🌐 Good news — we've translated this article into other languages!
Or pick the one you like:

ContentTweaker Mod extends CraftTweaker, allowing you to add completely new items and blocks to Minecraft. While the main CraftTweaker mod focuses on changing recipes, this addon lets you create new content from scratch. You can design your own items, build custom blocks, and even make new Creative Tabs to keep everything organized.

Mod Wiki:

CreativeTab

Items

Blocks

Resources

Features:

  • Adds the ability to create new, custom items.
  • Lets you design and implement new blocks.
  • Allows you to make new Creative Tabs for your custom content.

Scripts for this mod work differently from regular CraftTweaker scripts. Here are the key differences:

  • Your script files must begin with the line #loader contenttweaker.
  • These scripts go into the same ‘scripts’ folder that CraftTweaker uses.

How to Use:

You can create items and blocks using Zenscript. These new assets are treated like any standard block or item and will need their own models and textures.

  1. Create your script files using Zenscript syntax.
  2. Place any required model or texture files in the ACRONYM/ContentTweaker sub-folder, which is found in your config directory.

Below is a basic example of a script that creates a new block:

import mods.contenttweaker.VanillaFactory;
import mods.contenttweaker.Block;

var zsBlock = VanillaFactory.createBlock("zs_block", <blockmaterial:iron>);
zsBlock.fullBlock = true;
zsBlock.lightOpacity = 255;
zsBlock.translucent = true;
zsBlock.lightValue = 1.0;
zsBlock.blockHardness = 5.0;
zsBlock.blockResistance = 5.0;
zsBlock.toolClass = "pickaxe";
zsBlock.toolLevel = 2;
zsBlock.blockSoundType = <soundtype:metal>;
zsBlock.register();

Screenshots:

The creative inventory displays a custom candy block from ContentTweaker Mod
The creative inventory displays a custom candy block from ContentTweaker Mod
Red and white striped candy blocks placed on the grass in Minecraft
Red and white striped candy blocks placed on the grass in Minecraft
A custom red and white striped block from ContentTweaker on grass
A custom red and white striped block from ContentTweaker on grass
Player holding a custom heart item near a striped block in survival mode
Player holding a custom heart item near a striped block in survival mode
A red heart item floats above the green grass near a flower
A red heart item floats above the green grass near a flower
A wolf is surrounded by heart particles after being fed a heart item
A wolf is surrounded by heart particles after being fed a heart item

ContentTweaker Mod Download Links

For Minecraft 1.7.10

Forge version: Download from Server 1Download from Server 2

For Minecraft 1.10.2

Forge version: Download from Server 1

For Minecraft 1.19.2

Forge version: Download from Server 1Download from Server 2

Fabric version: Download from Server 1Download from Server 2

For Minecraft 1.18.2

Forge version: Download from Server 1Download from Server 2

Fabric version: Download from Server 1Download from Server 2

For Minecraft 1.16.5

Forge version: Download from Server 1Download from Server 2

For Minecraft 1.15.2

Forge version: Download from Server 1

For Minecraft 1.12.2, 1.12.1, 1.12

Forge version: Download from Server 1Download from Server 2

Click to rate this post!
[Total: 0 Average: 0]