Tabulator
This Minecraft mod for version 1.12 is a functional extension that provides users with extensive capabilities for customizing creative mode through integration with CraftTweaker.
Core Functionality
With this tool, you gain complete control over the list of available creative mode tabs. The mod allows you to completely eliminate unnecessary creative sections, remove individual items from all tabs simultaneously, or selectively remove elements only from specific categories.
Command Assistant
For convenient navigation, the mod includes a specialized console command /creativeTabs that displays a complete list of all existing creative mode tabs with their exact identifiers.
Usage Examples
import mods.tabulator.Tabs;
// Complete removal of the "combat" tab
Tabs.removeTab("combat");
// Remove diamond from all tabs
Tabs.remove(<minecraft:diamond>);
// Remove all types of stone from all tabs
Tabs.remove(<ore:stone>);
// Selective removal of diamond sword only from the "combat" tab
Tabs.remove("combat", <minecraft:diamond_sword>);
// Create custom tab with various items
Tabs.create("custom_tab", <minecraft:diamond>)
.addItem(<minecraft:iron_ingot>, <minecraft:gold_ingot>)
.addIngredient(<ore:ingotCopper>, <ore:ingotBronze>);