your current location:首页 > news>Use CRT to give you EFAB to add formula EFAB CT Bindings Minecraft Game

Use CRT to give you EFAB to add formula EFAB CT Bindings Minecraft Game

2024-12-09 18:31:46|Myriagame |source:minecraft skins

This tutorial is set by the author to use the CC By-NC-SA protocol.

This article only adds a formula for EFAB CT Buildings, and does not involve the original EFAB to add a formula with JSON.

The official tutorial is here, I just simplified it.


To put it simply, the input items are ingredient type, which can be OD (miner dictionary, ) or IItemstack (format like ).

You can hold the items in your hand, and then use the/ct hand instruction to display some information about this item in the chat box.

IITEMSTACK general format is

OD format is generally

The output items are all IITEMSTACK.

Tick ​​is T, MC in time unit.

If you still don't understand, you can see this link.


Install the three modules of EFAB, EFAB CT Buildings, Crafttweaker.

First create a new .zs suffix file in the Scripts folder,

There is no Scripts folder to create one by yourself.

Zenscripts can only be tested in this file.

First guide package at the beginning (the pre -adding carrier can be placed first place)

Import Mods.efabct.efabrecipe;

Then change the run, and write a simple EFAB synthesis

 EFABRECIPE.SHAPD (, [, , ])

.Tier ("Computing")

.Time (20);

Let's look at the first line first. Shaped means that this synthesis is orderly synthesis, and the later is a synthetic item. Then you can write it as the workbench.

The second line of Tier refers to what this EFAB synthesis is to be used. It can also be an upgrade in the synthetic terminal, or it can be an extension like a gear box. Note that Tier can write several lines. For example, I only write one.

Steam (steam)

Gearbox (gear box)

Advanced_gearbox (Advanced Gear Box)

RF (Redstone Flux, is RF energy)

Liquid (fluid)

Mana (magic in plant magic)

Computing (synthetic terminal)

Upgrade_armory

Upgrade_magic (Magic Upgrade)

Upgrade_power (strength upgrade)

Upgrade_digital (digital upgrade)

Time in the third line is synthetic time, plastic surgery and use tick.

In addition to Shaped, there is also a synthetic method for Shapeles, that is, disorderly synthesis. As long as the things in the synthetic table are put on, it can be synthesized without care of the order.

Like this

 EFABRECIPE.Shapeless (, [, , ]))

.Time (250);

If you need RF, add a line

.rfpertick (114514)

The number inside represents how much RF is input per color.

If you write mana, use it

.manapertick (1234)

The numbers in it represent how much MANA is input per color.

There is also a liquid type that needs to match the input fluid.

.flum (*500)

Refers to use 500MB of Water liquid. The question comes. How to find this liquid type: only need to enter instructions/CT liquids

You can print all the fluids in the game into the log!

In the crafttweaker.log file under MINECRAFT.

You have read another tutorial, which adds a step for your magic reform.