Minetweaker Recipemaker



  1. Minetweaker Recipe Maker 1.7.10
  2. Minetweaker Recipe Maker
  3. Minetweaker Recipe Maker
MineTweaker
Current developersStanH
Version3.0.10B
Supported Minecraft versions1.8
URLLink
Modpacks
Monster
Horizons
Tech World 2

Minetweaker Recipe Maker 1.7.10

MineTweaker is a mod by StanH that aims to allow customization of the Minecraft experience. MineTweaker allows players to add/remove crafting table recipes, as well as certain specific mod machines. Items can be renamed and removed, liquid containers can be added or removed, and even the OreDictionary can be altered to the editor's liking. All of this can be done using a very simple coding language inside one configuration file.

  1. I know MineTweaker has.withTag function, which I need to dig more into as the few attempts I've made to use it have ended badly, but I have no idea how I address the ExtraUtils2 machine block, as that itself has no Tag data, but attempting to address the machine block without tag data with say.
  2. MineTweaker RecipeMaker. Mods 8,659,549 Downloads Last Updated: Nov 5, 2017 Game Version: 1.12.2. Download Install Downloading now. If your download doesn't start automatically, click here. Manage, install and update your addons/mods free with the.

Guides[edit | edit source]

PLEASE DO NOT ASK US FOR MINETWEAKER / CRAFTTWEAKER SUPPORT! We don't make Minetweaker and don't know how every little bit of it works. There is TONS of information on the wiki! Now available for 1.10.2! (The current 1.10.2 build only supports crafting, sorry) This mod should work with Minetweaker OR Crafttweaker, and if it doesn't, let us know! Prerequisite Before you can write any MineTweaker scripts, install MineTweaker first and create a '/scripts/' directory in the '/minecraft/' directory. This should be at the same level as the '/mods/' and '/config/' directories. All scripts are written in files with the '.zs' extension.

See also[edit | edit source]

v·d·eMineTweaker 3 Guide
'Vanilla' MineTweaker
Using MineTweaker and Vanilla·Using MineTweaker and BuildCraft·Using MineTweaker and IndustrialCraft 2·Using MineTweaker and MineFactory Reloaded·Using MineTweaker and NEI
Misc
Using MineTweaker and Avaritia·Using MineTweaker and BetterStorage·Using MineTweaker and Blood Magic·Using Minetweaker Addon for GregTech·Using MineTweaker and Immersive Engineering·Using MineTweaker and Tinkers' Steelworks·Using MineTweaker and Witching Gadgets·Using MineTweaker and Foundry·Using MineTweaker and Flaxbeard's Steam Power
Legacy


Retrieved from 'https://ftb.gamepedia.com/MineTweaker?oldid=681596'

For MineTweaker 3, see the MineTweaker 3 Guide

  • 2Basic Functions
    • 2.2Removing Recipes
    • 2.3Adding Recipes

Minetweaker Recipe Maker

Prerequisite[edit | edit source]

1.12

Before you can write any MineTweaker scripts, install MineTweaker first and create a '/scripts/' directory in the '/minecraft/' directory. This should be at the same level as the '/mods/' and '/config/' directories. All scripts are written in files with the '.zs' extension. The name of these files does not matter to the scripts or MineTweaker.

Minetweaker Recipe Maker

Basic Functions[edit | edit source]

Defining an Item/Block[edit | edit source]

Defining an item or block before you configure is very helpful in keeping your configuration file neat and organized. It isn't required, but it makes reading it later much easier and makes writing multiple recipes with the same components much simpler. You can use the Ore Dictionary to do this. Example:

This would set anything that uses the Ore Dictionary entry of 'ingotIron', to be called later as Iron. You can also use IDs. Example:

This would set Item ID 265 to the name, Iron, to be called later in the configuration. This also works with metadata. Example:

This would set the Item ID 19373:2 to the name, RedstoneChip, to be called later in the configuration. Finally, you can simply use what the item is named within a mod. Example:

This would set 'item.ContolCircuit' to the name, IC2Circuit, to be called later in the configuration.

Removing Recipes[edit | edit source]

Crafting Table[edit | edit source]

Removing Crafting Table recipes is very simple with MineTweaker. This must be done before adding recipes, typically. First, you must define the item or block in which you want to remove, as shown above.

This will remove all crafting recipes for the item, IC2Circuit, which is defined above. You can also use item IDs. Item IDs must be inside of angled brackets. Example:

This will remove the recipes for item ID 265. You can also use metadata. Item IDs and metadata must be inside of angled brackets. Example:

This will remove the recipes for item ID 19373:2. You can also use the Ore Dictionary. Example:

This will remove all recipes that create an item or block that uses the Ore Dictionary entry of ingotIron. You can also specify whether you wish to remove all Shaped recipes, or all Shapeless recipes. Item IDs and metadata must be inside of angled brackets. Example:

This will remove all Shaped recipes for ID 265, and all Shapeless recipes for 19373:2. You can use the Ore Dictionary, or the defined name as shown above. You can even remove a specific recipe. Example:

This code first defines the Iron Nugget as oreDict entry nuggetIron. Then, it removes the Shaped recipe for 9 Iron Nuggets = 1 Iron Ingot. Then, it removes the Shapeless recipe for 1 Iron Ingot = 9 Iron Nuggets. Note the usage of '*9'.

Furnace[edit | edit source]

Removing Furnace recipes is as simple as removing Crafting Table recipes. All of the same rules apply, metadata, oreDict, IDs, and names are allowed. Example:

This will remove the furnace recipe for Iron, which is defined above. You can also specify which recipe to remove. Example:

Minetweaker

This will remove the recipe for 1 Iron Ore = 1 Iron Ingot.

Adding Recipes[edit | edit source]

Crafting Table[edit | edit source]

Adding Crafting Table recipes with MineTweaker is very simple. All of the same rules apply: metadata, oreDict, IDs, and names are allowed. You must specify whether a recipe is Shaped or Shapeless. Item IDs and metadata must be inside of angled brackets. Example:

This will add the following recipes:

















You can also make recipes create damaged items. Example:

This adds two recipes, one Shaped, and one Shapeless. The Shapeless recipe means that a Gold Ore will create a damaged Wooden Pickaxe. The Shaped recipe means that an Iron Ingot to the left of a Gold Ingot in a Crafting Table will create a damaged Wooden Pickaxe. You can also make recipes use NBT tags, for enchantments, and other things that use NBT tags. Example:

This code makes a Wooden Pickaxe and a Nether Star create a Wooden Pickaxe with the enchantment ID 33, or Silk Touch. This requires 1 level. The principle is the same for Shaped recipes.

Furnace[edit | edit source]

Adding Furnace recipes with MineTweaker is as simple as Crafting Table recipes, but not quite as flexible. All of the same rules apply: metadata, oreDict, IDs, and names are allowed.

This code adds a Furnace recipe of 1 Gold Ore = 2 Iron Ingots. You can also make the recipe give you experience. Example:

This code adds the same recipe, only it gives you experience when you take it out of the furnace. You can also add and remove fuels. Example:

This will add a furnace fuel of Gold Ore. It will burn for 20 ticks, or 1 second. It will then remove the fuel of Coal, by setting it to have 0 ticks.


You can find more information on how to use the different functions and options on the MineTweaker wiki.

v·d·eMineTweaker 3 Guide
'Vanilla' MineTweaker
Using MineTweaker and Vanilla·Using MineTweaker and BuildCraft·Using MineTweaker and IndustrialCraft 2·Using MineTweaker and MineFactory Reloaded·Using MineTweaker and NEI
Misc
Using MineTweaker and Avaritia·Using MineTweaker and BetterStorage·Using MineTweaker and Blood Magic·Using Minetweaker Addon for GregTech·Using MineTweaker and Immersive Engineering·Using MineTweaker and Tinkers' Steelworks·Using MineTweaker and Witching Gadgets·Using MineTweaker and Foundry·Using MineTweaker and Flaxbeard's Steam Power
Legacy


Retrieved from 'https://ftb.gamepedia.com/How_to_Use_MineTweaker_2?oldid=668140'