Railway-MOT Reconstruction Tutorial [MOT] MODTWEAKER MINECRAFT Game

This tutorial is from MC Encyclopedia (MCMOD.CN) using the CC By-NC-SA protocol.

Railcraft (railway enhancement) -MT magic reform description


Railcraft, as an old Mod, also has corresponding support for it, but some special precautions are still necessary to propose here.

Modtweaker adds the formula for the following machine:

Blast Furnace (blast furnace)

Coke oven (coke oven)

Rock Crusher

Rolling Machine (Roller)

1. Blast Furnace (blast furnace)

Add formula:

Mods.railCraft.blastfurnace.addrecipe (input item, whether to match metadata, whether to match NBT data, time required, output items);

Remove recipe:

Mods.railcraft.blastfurnace.removerecipe (output item);

Add blast furnace fuel: (Note: The fuel itself is required for the furnace fuel to add to the blast furnace fuel!)

Mods.railcraft.blastfurnace.addfuel (item mark);

Remove blast furnace fuel:

Mods.railcraft.blastfurnace.removefuel (item mark);

Note: Input items and output items do not support mineral dictionaries!

An example sentence of adding formula from the official wiki of Modtweaker:

Mods.railCraft.blastfurnace.addrecipe (, false, false, 130, );

The effect is to make 1 iron lamp in a blast furnace with 130 Ticks into 1 steel lamp (as shown in the figure).

1

But in practical applications, we find that other metal lights and even steel lights themselves can be burned into steel lamps (as shown in the figure).

2

Why is this?

2. About MatchDamage (matching Metadata) and MATCHNBT (matching NBT data)

In the support of Modtweaker for RC, it contains related items of MatchDamage and Matchnbt, and this part has countless integration packages, so we need to explain.

MatchDamage refers to matching Metadata. Metadata intuitively says that it is a sub -ID after the item ID. For example, the ID of the orange wool is 35: 1, and 35 is the item ID of wool, and 1 is Metadata.

Matchnbt refers to matches NBT data. For content about NBT data, please move the Minecraft -related page.

If it is True, the matching is turned on; if it is FALSE, it will not match.

This function is mainly to match tools or weapons with durable wear or magic attachment, as follows:

Mods.railcraft.blastfurnace.addRcipe (, False, False, 20, * 2);

The MatchDamage and MATCHNBT here are false. The effect is that one diamond ax (any durable enchantment) can be made in a blast furnace with 20 ticks (as shownapplication).

34

However, some items have the same items and different MTADATA. If you use FALSE, the situation appears in the following example.

MODS.railCraft.blastfurnace.addRcipe (, False, False

Mods.railcraft.blastfurnace.addRcipe (, FALSE, FALSE, 20, ); The ideal effect is to use a bronze ore in the blast furnace 20 ticks Make 1Copper ingots make a tin ore into a blast furnace with 20 Ticks into a tin ingot (an example of a blast furnace burning ore).The NEI display is the same (as shown in the figure).

56

And when we put the tin ore into the blast furnace, we accidentally discovered

7

This is the consequence of changing the MatchDamage to True. If similar problems occur, change the MatchDamage to TRUE.I also hope that this problem will no longer bother you who are learning Modtweaker.

3. Coke Oven

Add formula:

Mods.railcraft.cokeoveen.addrecipe (output items, output liquid, input items, time required);

Remove recipe:

Mods.railcraft.cokeoveen.removerecipe (output item);

Note: Input items and output items do not support mineral dictionaries!

An example sentence of adding formula from the official wiki of Modtweaker:

Mods.railcraft.coKeoveen.addrecipe (, * 100, , 400);

The effect is that one fence can be made into a wooden stake with 400 Ticks in the coke oven, and the heterohenol oil of 100 MB is output (as shown in the figure).

8

4. ROCK CRUSHER

Add formula:

Mods.railCraft.Rockcrusher.addRecipe (input item, whether to match MetAdata, whether to match NBT data, output item group, probability array);

Remove recipe:

Mods.railCraft.Rockcrusher.Rmoverecipe (input item);

Note: Input items and output items do not support mineral dictionaries!

An example sentence of adding formula from the official wiki of Modtweaker:

Mods.railCraft.Rockcrusher.addRecipe (, FALSE, FALSE, [ * 3, * 2, , ], [0.9, 0.8, 0.4, 0.4]);

The effect is to output 3 stones in the gravel at a 90%probability of 3 stones, 80%probability output 2 wooden boards, 40%probability output 1 red stone, 40%probability output 1 iron ingot (such as such as such as a iron ingot (such as such as a such asShown in the figure).

9

5. Rolling Machine (Roller)

Add an orderly/disorderly formula:

mods.railcraft.rolling.addshaped (output item, input item group);

mods.railcraft.rolling.addshapeless (output item, input item group);

Remove recipe:

Mods.railcraft.Rolling.removerecipe (output item);

Note: Input items and output items support the mineral dictionary!

An example of an orderly formula from the official wiki of Modtweaker:

 Mods.railLaft.Rolling.addshaped (, [, , null], [, , NULL],[NULL, NULL, NULL])); 
The effect is that the 4 golden particles can make a weight -measured pressure board (light quality) according to the direction method shown in the figure.

10

An example sentence of an disorderly formula from the official wiki of Modtweaker:

mods.railcraft.Rolling.addShapeless( * 2, [, ]);

The effect is to make 2 golden tickets and 1 golden grain according to arbitrary method (as shown in the figure).

11