Endless greedy-MOT modification tutorial [MOT] MODTWEAKER MINECRAFT Game

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

The evil 9 × 9 workbench makes you feel the author's full malicious ...

If you just want to use the ultimate workbench in the MOD, you need to enable the "Crafting only" item in the configuration file.

But if you want to experience the fun of this module, then you need to make a neutron collector first

Ultimate workbench

Increase disorderly ultimate synthetic formula, "Placeholder" represents a placeholder (the placement of the occupies of each synthetic formula should be distinguished), Output represents the synthetic product, Ingredients represents the required raw materials required for the raw material required

mods.avaritia.extremeCrafting.addshapeless ("Placeholder", output, Ingredients);

And: 1.7.10 version does not require a placement symbol, so the magic reform format above should be 1.7.10 as the following model, otherwise an error will be reported!

mods.avaritia.extremeCrafting.addshapeless (output, Ingredients);

Add an orderly and ultimate synthetic formula, "Placeholder" represents a placeholder (the place occupies of each synthetic formula should be distinguished), Output represents the synthetic product, Ingredients represents the required raw materials required

mods.avaritia.extremeCrafting.addshaped (output, Ingredients);

Also: 1.7.10 does not require a placement symbol, so the magic reform format above is 1.7.10 should be the following model, otherwise an error will be reported!

mods.avaritia.extremeCrafting.addshaped ("Placeholder", output, Ingredients);

Example:

mods.avaritia.extremeCrafting.addshaped ( * 1,

[[null, null, null, null, null, null, null, null, null],

[null, null, null, null, null, null, null, null, null],

[NULL, NULLL, NULL, NULL, , NULL, NULL, NULL, NULL],

[null, null, null, , , , null, null, null]

[NULL, NULL, , , , null, null],

[null, null, null, , , , null, null, null]

[NULL, NULLL, NULL, NULL, , NULL, NULL, NULL, NULL],

[null, null, null, null, null, null, null, null, null],

[NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL]]); mods.avaritia.extremeCrafting.remove (output);

Remove the ultimate synthetic formula, output represents the synthetic product

PS: 1.7.10 version adds endless synthesis and does not need to use a placeholder

Neutron compressor

mods.avaritia.Compressor.add ("Placeholder", output, amount, input);

"Placeholder" represents a placeholder (the placement of the occupying formula of each synthetic formula needs to be distinguished), Output represents the synthetic product, AMOUNT represents the number of materials required for synthesis, input represents the required raw materials required

chestnut:

mods.avaritia.Compressor.add ("obsidian", , 12450, )););

Effect: