your current location:首页 > news>The method of the 1.12.2 synthetic table cannot be used in the high version [CRT] CRAFTTWEAKER MINECRAFT Game

The method of the 1.12.2 synthetic table cannot be used in the high version [CRT] CRAFTTWEAKER MINECRAFT Game

2024-12-10 17:50:53|Myriagame |source:minecraft skins

Minecraft 1.12.2 Synthetic Form Format

recipes.addshapet (,

[[xxx, xxx, xxx],

[xxx, xxx, xxx],

[xxx, xxx, xxx]]));

Add 1.16.5 in the synthetic table:

Craftingtable.addshapet

[[xxx, xxx, xxx],

[Xxx, xxx, xxx],

[xxx, xxx, xxx]]));

Its item ID and xxx can be found in the game

Take an item in your hand (everything) and then enter the/ct hand to get a few string of ID

1.12.2 We use xxx: xxx to be used as ID

1.16.5 We use item: xxx: xxx

Disorderly synthesis 1.16.5: Craftingtable.addshapeless (replace it)

Remove Synthetic Table 1.16.5

craftingtable.removerecipe ()

The entire MOD synthetic table is deleted

craftingtable.removebymodid (ID of MOD)

In terms of furnace (1.16.5)

Add furnace formula

Furnace.addRecipe ("The name of this formula (everything)", , , experience (digital type is not character type), cooking time (digital type is not character type))

Delete the furnace formula

furnace.removerecipe ();

All the furnace formula of this MOD

furnace.removebymodid (modid)

Smoked furnace replaces furnace with Smoker, and the blast furnace can be replaced with Blastfurnace

A fuel editing

item.burntime = value;

.burntime = time (digital is not character type);

If set to 0, it is deleted

Stone cutter

StoneCutter.addRecipe

Remove the formula

stonecutter.removerecipe ()

The blank part of the synthetic table is not NULL, but

Do not forget the file suffix in the end to .zs (full version)

Must be added! (Full version)

Must be added <> (full version)