your current location:首页 > news>MT modify the melting furnace formula [MT] MineTweaker 3 Minecraft Game

MT modify the melting furnace formula [MT] MineTweaker 3 Minecraft Game

2024-12-10 17:53:30|Myriagame |source:minecraft skins

Add a smelting formula:

Format: Furnace.addrecipe (input items, output items);

Example: Furnace.addRecipe (, );

Effect: Enter coal smelting into charcoal

or:

Format: furnace.addrecipe (input items, output items, gain experience);

Example: Furnace.addRecipe (, , 0.5);

Effect: Enter coal smelting into charcoal and every burning experience value of 0.5

Remove a smelting formula:

Format: furnace.remove (finished finished product to be removed);

Example: furnace.remove ();

Effect: Remove all smelting formulas of gold ingots (that is, nothing can be burned into gold ingots, typical examples: forced you to use other methods to make gold ore into gold ingots)

or:

Format: Furnace.remove (input items to the formula to be deleted, the smelting finished product to be removed);

Example 1: Furnace.remove (<*>, );

Effect: Delete all synthetic formulas of the iron ingot

Example 2: Furnace.remove (, );

Effect: Delete the synthetic formula of iron ore smelting into iron ingots, which does not affect other things to smelled into iron ingots

Add a new fuel:

Format: Furnace.setfuel (to add fuel items, burning time);

Example: Furnace.setfuel (, 300);

Effect: A piece of paper can smell 1.5 items (time of burning an item = 200)