Gregtech-MT modification tutorial (New) GTTWEAKER MINECRAFT Game

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

The information here corresponds to GTTWEAKER 1.7.1.

Gregtech5 supports changing mechanical equipment:

· Alloy Smelter (alloy furnace)

· Amplifabricator (UU increase liquid production device)

· ARC Furnace (arc furnace)

· Assembler (assembly machine)

· Assembly Line (Equipment)

· AutoCLAVE (high pressure kettle)

· Blast Furnace (blast furnace)

· Bream (brewry)

· Canner

· Centrifuge (centrifugal machine)

· Chemical Bath (Chemical immersion)

· Chemical Reactor (chemical reactor)

· Circuit Assembler (Circuit assembly machine)

· Compressor (compressor)

· Cutting Saw (plate cutting machine)

· Distillation tower (distilled tower)

· Distillery (distilled room)

· Electrolyzer (electrolyte)

· Extractor (extractor)

· EXTRUDER

· Fermenter (fermentation slot)

· FLUID Canner (fluid filling machine)

· FLUID EXTRACTOR (fluid extract machine)

· Fluid Heater (fluid heater)

· Fluid Solidifier

· Forge Hammer (Forging Hammer)

· Forming Press

· Fuels (fuel)

· Fusion Reactor (nuclear clustering reactor)

· Implosion Compressor

· Lathe (lathe)

· Mixer (mixer)

· Oil Cracker (Petroleum Crack)

· ORE WASHER (Mine Washing Factory)

· Packer (packing machine)

· Plasma Arc Furnace (plasma arc furnace)

· Plate Bender (roll machine)

· Polarizer (two -level magnetic machine)

· Precision Laser

· Printer (printer)

· Pulverizer (grinding machine)

· Pyroluse Oven

· SEPARTOR (Magnetic Selection Mine)

· Sifter (gem sieve filter)

· Slicer (slicer)

· Unpacker

· Thermal Center

· Vacuumfreezer (vacuum freezer)

· Wiremill (wire rolling machine)

#The parameter marked as red is optional and can be ignored.Write null honestly

Note: The required time × consumption power is the total electricity used for use

Add the "alloy furnace" synthesis formula:

// Output items, input items 1, input item 2, time required (unit tick, the same below), consume power

Example: Mods.gregtech.alloysmelter.addrecipe (, , * 0, 800, 30);

Note: Input 2 ( * 0 refers to ‘mold’, and the number of ‘0’ consumption of * 0 fingers will not be consumed.

Add the synthetic formula of the ‘UU increase liquid production device’:

// Enter items, time required, output UU (unit mb)

Example: mods.gregtech.amplifabricator.addrecipe (, 200, 10);

Add ‘arc furnace’ synthesis formula:

// Output items multiple (≤4), input items, input fluids, output probability, time required, consumption power

Example: mods.gregtech.arcfurnace.addrecipe ([ * 5, * 4], , * 504, [10000, 5000], 1200, 32); Note: [10000, 5000] represents the output item [ * 5, * 4] is specifically/10000, so 10000 is 100%and 5000 is 50%.Note that the value of probability should be corresponding to the output item.

Add the ‘assembly machine’ synthesis formula:

// ①: Output items, input items 1, input items 2, input fluid, time, time, power consumption

Example: mods.gregtech.assembler.addRecipe (, * 6, * 3, * 1 000, 1200, 128);;

// ②: Output items, multiple input items (≤6), input fluid, time, time, power consumption

Example: mods.gregtech.assembler.addrecipe (, [ * 4, * 2, * 2], * 288, 600, 480);

Add ‘assembly cable’ synthetic formula:

// Pre -scanning items, time required for scanning, multiple input items (in order, ≤16), multiple input fluids (in order, ≤4), output items, time required, consumption power, consumption power

Example: Assemblyline.addRecipe (, 144000, [ * 4, * 2, * 32, * 32, * 8, ES: 884>, *64, *64, *8], [* 144, * 2880, * 2880], , 600, 512000);

Add ‘high -pressure kettle’ synthesis formula:

// Output items, input items, input fluids, output probability, consumption power, whether a low gravity environment requires

Example: Mods.gregtech.autoclave.addrecipe (, , * 200, 9000, 2000, False); 'Synthesisformula:

// ①: There are multiple output items, input fluids, multiple input items, the required time, consumption power, the required furnace temperature

Example: mods.gregtech.blastfurnace.addrecipe ([, ], * 9000, [], 1500, 120, 1500);

// ②: multiple output items, output fluids, multiple input items, input fluids, time required, consumption power, required furnace temperature

Example: Mods.gregteCh.blastfurnace.addrecipe ([], *3000, [ , ], *3000, 4950, 480, 3300);

Add ‘brewing room’ synthetic formula:

// Enter fluid, input objects, output fluids, whether it is a hidden formula (that is, NEI cannot be found)

Example: Mods.gregtech.brewery.addrecipe ( * 10000, , * 1000, False)

Add the "tinner" synthetic formula:

// ①: multiple output items (≤2), input items 1, input item 2, time required, consumption power

Example: mods.gregtech.canner.addrecipe ([ * 4, ], * 4, , 50, 200);

// ②: Output items, input items 1, input item 2, time required, energy consumption

Example: mods.gregtech.canner.addrecipe (, *2,

Add the "centrifugal machine" synthesis formula:

// There are multiple output items (≤6), output fluid, input items 1, input item 2, input fluid, output probability, time required, consumption power

Example: Mods.gregtech.centrifUge.addrecipe ([ * 12, * 15, * 6], * 200, *4, , * 200, [10000, 9000, 8000], 100, 50);

Add the synthetic formula of the ‘chemical immersion machine’:

// Output items multiple (≤3), input items, input fluids, output probability, time required, consumption power

Example: Mods.gregtech.chemicalBath.addrecipe ([], , * 144, [100000000 ], 200, 2); Add the 'chemical reactor kettle'Synthetic formula:

// ①: Output items, output fluids, input items, input items 2, input fluids, time required, consume power (automatically set automatically as 30)

Example: Mods.gregtech.chemicalReactor.addRecipe ( * 2, , , 1: 2815>, , 200);

// ②: Output items 1, output items 2, output fluid, input items 1, input items 2, input fluid, time required for time, consumption power

Example: Mods.gregtech.chemicalReactor.addRecipe (NULL, , *1000, *1, *1, *1000,100,120);

Add ‘circuit assembly machine’ synthesis formula:

// Output items, multiple input items (≤6), input fluid, time required, consumption power

example:

Mods.gregtech.circuitassembler.addrecipe (, [ * 1, * 4, * 4, * 24, * 16, * 12], *288, 1600, 30);

Add a 'compressor' synthetic formula:

// Output items, input items, time required, consumption power

Example: (pretend to have an example)

Add a 'plate cutting machine' synthetic formula:

// ①: There are multiple output items (≤2), input items, input fluids, required time, consumption power

Example: mods.gregtech.cuttingsaw.addrecipe ([ * 3, * 3], , * 12, 30, 30);

// ②: Output item 1, output item 2, input items, [integrated circuit configuration or input fluid], time required, consumption power

Example: (pretend to have an example)

Add a 'distilled tower' synthetic formula:

// adduniversal may refer to adding a corresponding formula recipe to the distilled chamber (multiple output fluid multiple (≤12), output items, input fluids, time required, consumption power)

Example: Mods.gregtech.distiLlate.addRecipe ([ * 800, * 100, * 75, * 25], * 4, * 1000, 50, 100);

// Output fluids, input integrated circuits, input fluids, time required, consumption power, whether to hide

Example: mods.gregtech.distillery.addrecipe ( * 250, * 0, * 250, 80, 80, 30, false);

Add the "electrolytic slot" synthesis formula:

// Output items multiple, output fluid, input items, input unit, input fluid, output probability, time required, consumption power

Example: mods.gregtech.electrolyzer.addrecipe ([ * 3, * 4, * 5], , , , , [10000, 8000, 6000], 1000, 40000)), 1000, 40000);;

Add the ‘extraction machine’ synthesis formula:

// Output items, input items, time required, consumption power

example:

Mods.gregtech.extractor.addrecipe ( * 2, ););

Add the "Modifier" synthetic formula:

// Output items, input items, input templates, time required, consumption power

Example: mods.gregtech.extruder.addrecipe (, * 4, * 0, 120, 128);

Add the "fermentation slot" synthesis formula:

// Output fluid, input fluid, whether the time required is a hidden formula (that is, NEI cannot be found)

Example: mods.gregtech.fermenter.addrecipe ( * 50, * 1000, 20, false);

Add the "fluid filling machine" synthetic formula:

// Output items, input items, output fluids, input fluids

Example: Mods.gregtech.fluidcanner.addrecipe (, , * 200, * 500) ;;

Add the "fluid extract machine" synthetic formula:

// Output items, input items, output fluids, output probability, time, time, power consumption

Example: Mods.gregtech.fluidextRactor.addRcipe (, , * 4000, 6000, 20, 2); add 'Fluid heater' synthesisformula:

// Output fluid, input circuit, input fluid, time required, consumption power

Example: Mods.gregtech.fluidheater.addrecipe ( * 250, * 0, * 250, 40, 20) ;;

Add the synthetic formula of the "fluid solidifier":

// Output items, input molds, input fluids, time required, consumption power

Example: Mods.gregtech.fluidsolidifier.addrecipe (, * 0, * 480, 64);

Add ‘Forging Hammer’ Synthesis Form:

// Output items, input items, time required, consumption power

Example: mods.gregtech.forgehammer.addrecipe (, * 2, 20, 16);

Add ‘stamping machine tool’ synthetic formula:

// Output items, input items 1, input items 2, time required, consumption power

Example: Mods.gregtech.FormingPress.addrecipe ( * 12, , , 200, 4, 4 80);

Add ‘fuel’ synthesis formula:

// Output items, input items, output per mb

// 1000MB Each input is equal to 100000MB

Example I: Mods.gregtech.fuels.adddieSelfuel (, , 250); 250); 250); 250); 250); 250); 250); 250); 250); 250); 250); 250);

例子II:mods.gregtech.Fuels.addGasTurbineFuel(, , 100);

Example III: Mods.gregtech.fuels.addthermalgenratorFuel (, , 1000); 1000); 1000);

例子IV:mods.gregtech.Fuels.addDenseFluidFuel(, , 2000);

例子V:mods.gregtech.Fuels.addPlasmaGeneratorFuel(, , 20);

Example vi: Mods.gregickCh.fuels.addmagicgenratorFuel (, , 20000)

Add 'nuclear fusion' synthesis formula:

// Output fluid, 1 Input fluid 1, 2 Input fluid 2, time required, consumption power, start the required energy required

Example: mods.gregtech.fusionReactor.addrecipe ( * 5, * 100, * 50, 200, 5000, 10000000);

Add the synthetic formula of the ‘aggregate compressor’:

// Output items multiple (≤2), input items, TNT quantity

Example: Mods.gregteCh.implosscomCompressor.addRecipe ([, * 16], * 32, 64);

Add ‘lathe’ synthesis formula:

// Output items multiple (≤2), input items, time required, consumption power consumption power

Example: Mods.gregtech.lathe.addrecipe ([, ], , 640, 16);

Add a 'mixer' synthetic formula:

// Output items, output fluids, multiple input items (≤4), input fluids, time required, consumption power

Example: Mods.gregtech.mixer.addrecipe (, * 1000, [, ], liquid: water> *1000, 100, 16);

Add the synthetic formula of the "Petroleum Crack":

// ①: Output fluids, input fluids, the time required, consumption power (this form may be no longer available)

Example: (Pretend to have an example)

// ②: Configuration circuit, output fluid, input fluid 1, input fluid 2, time required, consumption power

Example: (Pretend to have an example)

Add ‘Mine Washing Factory’ Synthesis Form:

// Output items 1, output items 2, output items 3, input fluid (automatically set to 1000MB water if not fill in), the required time, consumption power

Example: (Pretend to have an example)

Add a "packaging machine" synthetic recipe:

// Output items, input items 1, input items 2, time required, consumption power

Example: mods.gregtech.packer.addrecipe (, * 9, , 50, 25);

Add ‘plasma arc furnace’ synthetic formula:

// Output items multiple (≤4), output fluid, input items, input fluids, output probability, time required, consumption power

Example: Mods.gregtech.plasmaarcfurnace.addRecipe ([], * 250, , * 250, [10000],65, 30);

Add ‘roll machine’ synthesis formula:

// Output items, input items, time required, consumption power

Example: mods.gregtech.plateBender.addrecipe (, * 9, 3600, 96);

Add a 'magnetic machine' synthetic formula:

// Output items, input items, time required, consumption power example: mods.gregtech.polarizer.addrecipe (, , 600, 30); 30); 600, 30); 30); 600, 30); 30);

Add the synthesis formula of the ‘precision laser etching machine’:

// Output items, input lenses, input items, time required, consumption power, whether

Example: mods.gregtech.precisionlaser.addrecipe (, * 0, * 4, 1200, 1200 480);

Add ‘soil blast furnace’ synthesis formula:

// Output items 1, output items 2, input items 1, input item 2, time required, the number of coal consumption

Example: (Pretend to have an example)

Add a 'printer' synthetic formula:

// Output items, input items, input items (flash memory), input fluid, time, time, power consumption

Example: mods.gregtech.printer.addrecipe (, , , , 25, 15);

Add a "grinding machine" synthetic formula:

// Output items multiple (≤4), input items, output probability, time required, consumption power consumption power

Example: Mods.gregtech.pulverizer.addrecipe ([, , , ], , [10000, 3000, 1500, 1500], 400, 2);

Add ‘thermal solution furnace’ synthesis formula:

// Output items, output fluids, integrated circuit configuration, input items, input fluids, time required, consumption power

Example: mods.gregtech.pyrolyseoven.addrecipe (recipe needed);

Mods.gregtech.pyrolyseoven.addrecipe (*32, *4000,1, *16, NULL, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 640, 64);

Add ‘Magnetic Selection and Mining Factory’ Synthesis Form:

// multiple output items (≤3), input items, output probability, time required, consumption power

Example: Mods.gregtech.setdDRECipe ([, * 2, * 4], , [5000, 2000, 1500], 200, 300);

Add the synthetic formula of the "Gem Sieve Filter":

// multiple output items (≤9), input items, output probability, time required, consumption power consumption power

Example: mods.gregter.addrecipe ([, , ], , [2000, 500, 50],10, 5);

Add a "slicer" synthetic formula:

// Output items, input items, input blades, time required, consumption power

Example: mods.gregtech.slicer.addrecipe ( * 8, , * 0, 8);

Add ‘thermal centrifugal machine’ synthesis formula:

// Output items 1, output items 2, output items 3, input items, time required, consumption power

Example: (pretend to have an example)

Add the ‘unblock machine’ synthesis formula:

// Output items 1, output item 2, input item, time required, consumption power

Example: mods.gregtech.unpacker.addrecipe ( * 4, * 5, , 50, 200);

Add ‘vacuum freezer’ synthetic formula:

// Output items, input items, the required time (power will be automatically set to 120)

例子:mods.gregtech.VacuumFreezer.addRecipe(, , 50);

Add the "wire rolling machine" synthetic formula:

// Output items, input items, time required, consumption power

Example: mods.gregtech.wiremill.addrecipe ( * 4, , 100, 50);