your current location:首页 > news>1.16 Synthetic Expansion ExtendedCrafting Crafttweaker code

1.16 Synthetic Expansion ExtendedCrafting Crafttweaker code

2024-12-10 17:44:48|Myriagame |source:minecraft skins

The 1.16 version of the CraftTewaker has changed, and the previous synthetic formula format has changed slightly.The specifics are as follows:

mods.extendedcrafting.CombinationCrafting.addRecipe("配方名称(必须独一无二)", <输出物品>, 所需rf,  [<合成核心物品>,<基座物品>, .....(最多48个)], RF rate);

Main changes:

1. Add the formula name

2.RF rate placed to the last parameter

3. Synthetic core items are located in the first place rather than listed separately

4.物品前面要用item:前缀,不然会报错——Invalid bracket expression:no prefix minecraft!

For example

Use 1 diamond and 3 coal, spend 100000rf, 200rf/tick, synthesize diamond*2.

Mods.extEdedCrafting.combiningCrafting.addRecipe ("test", * 2, 100000, [ >, , ], 200);

If you do not write the default 500RF/TICK without writing the synthetic rate

Even if you spend 0RF, you need to enter at least 1RF to synthesize, although it will not consume ...