your current location:首页 > news>Better-MOT Tutorial [BB] Better Beginnings Minecraft Game

Better-MOT Tutorial [BB] Better Beginnings Minecraft Game

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

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

To the author of the integrated package:

If you want to bring the official abbreviation of BB (better starting Better Beginnings, I have also called this module before before. I did not expect that the official is really such abbreviation. The following is called BB called this module) to your integration packageAmong them, you are a module with a vision and courage to integrate the package author.Speaking of vision, it is because BB's new high workbench and 3*3 stoves similar to the RP2 alloy furnace are brighter. It is estimated that people who have changed the RP2 alloy furnace rarely want to use 3*3The "alloy furnace" method of roasting cake; the courage is because BB is a module with poor compatibility. For example, the use of the old version of the artisan soul tool will be judged by the BB as the BB as the BB as the BB as the BB as the BB as the BB will be judged as the BB.Bloody -handed blood or use IC2's electric diamond damage block will be judged by BB as "wrong tool" and cannot be mined (BB believes that electric drills are not even as good as iron pick 233).The 1.7.10 version of the BB is actually fixing the BUG all the way, but the synthetic table of the last shadow box and the two items stickers and other bugs have remained until the final version of 1.7.10.So I will support you to add BB to your integration package, but please be mentally prepared.

Note: BB's support for MT is limited to a newer version of 1.7.10, 1.8 BB does not support MT, and 1.7.10 BB If the version is too old, it does not support MT!Intersection

Official wiki tutorial: Click to enter

1. Advanced synthetic table

The four stacked materials on the far left are called "catalysts" (chemical enthusiasts, please note that the "catalyst" here is consumed in synthesis = =) ...

The "catalyst" in this synthetic table means that the bone pick needs to fix the picking head with two belts.

Personally, the core of BB is that this has changed the advanced synthetic table of various items.

mods.betterbeginnings.advancedcrafting.addrecipe (iitemstack output, ingredient [] [] [] inputs, iveRedient [] calysts)

// Add a advanced synthesis (note that high synthesis is not disorderly), and the last one is the needs of catalysts

Mods.betterbeginnings.advancedCrafting.adDhiddenRecipe (IITEMSTACK OUTPUT, IINGREDIENT [] [] inputs, IINGREDIENT [] catalysts)

// Add a hidden advanced synthesis (NEI cannot find it)

mods.betterbeginnings.advancedcrafting.removerecipe (IITEMSTACK OUTPUT, IINGREDIENT [] [] [] inputs, IINGREDIENT [] calysts)

// Remove a specific advanced synthetic formula

mods.betterbeginnings.advancedcrafting.removeoutput (IITEMSTACK OUTPUT);

// Remove all advanced synthesis of the item

2. Bonfire

The difference from the original melting furnace is divided into two modes: disk and no disk (prohibited to eat)

mods.betterbeginnings.campfire.addrecipe (IITEMSTACK OUTPUT, INGREDIENT Input, Float XP);

// Add a bonfire formula with a dishless mode (no need to be a pan or barbecue fork). The last experience can ignore it without filling.

mods.betterbeginnings.campfire.addpanRcipe (IITEMSTACK OUTPUT, INGREDIENT Input, Float XP);

// Add a bonfire formula with a dish mode (need to be a pan or barbecue fork), and the last experience can ignore it without filling.

mods.betterbeginnings.campfire.removerecipe (IITEMSTACK OUTPUT, INGREDIENT Input);

// Remove a specific bonfire formula of a specific disk -free mode

mods.betterbeginnings.campfire.removepanRcipe (IITEMSTACK OUTPUT, INGREDIENT INPUT); // Remove a specific bonfire formula formula with a special disk mode.

mods.betterbeginnings.campfire.removeoutput (IITEMSTACK OUTPUT);

// Remove all the bonfire formula of the item

3. kiln

Unlike the original melting furnace, only low -level kiln has limited fuel ...

mods.betterbeginnings.kiln.addrecipe (IItemstack Output, INGREDIENT Input, Float XP);

// Add a kiln formula, the last experience can ignore it without filling in

mods.betterbeginnings.kiln.removerecipe (IITEMSTACK OUTPUT, INGREDIENT Input);

// Remove a specific kiln formula

mods.betterbeginnings.kiln.removeoutput (IITEMSTACK OUTPUT);

// Remove all the furnace formula of an item

4. Baking

A alloy furnace similar to RP2 ...

mods.betterbeginnings.oven.addshapedRcipe (IITEMSTACK OUTPUT, IINGREDIENT [] [] inputs);

// Add an orderly grill formula

mods.betterbeginnings.oven.addshapelessRecipe (IITEMSTACK OUTPUT, INGREDIENT [] inputs);

// Add an disorderly oven formula

mods.betterbeginnings.oven.removeShapedRcipe (IITEMSTACK OUTPUT, INGREDIENT [] [] inputs);

// Remove a specific orderly oven formula

mods.betterbeginnings.oven.removeShapelessRcipe (IITEMSTACK OUTPUT, INGREDIENT [] inputs);

// Remove a specific disorderly oven formula

mods.betterbeginnings.oven.removeoutput (Itemstack Output);

// Remove all the furnace formula of the item

5. Furnace

The difference between the original melting furnace is that a certain amount of gravel is required to participate in the melting minerals, and there are certain fuel restrictions

mods.betterbeginnings.smelter.addRecipe (IITEMSTACK OUTPUT, INGREDIENT Input, Float XP, Int Gravel, INT BONUS, Float Bonuschance);

// Add a furnace formula.The last two items are the reward mechanism. The first item is the probability of getting a reward (scope 0 ~ 1). The second item is the number of rewards that can be obtained extra. Note that 100%of the first burned minerals have no reward, two do not reward, twoBoth items can be ignored.The third item is the demand for the gravel. It is necessary to fill in the integer. If you fill in 0 or not to fill the furnace, you still need to put at least one gravel, but this gravel will not be consumed.The third item of the positive number is experience.You can fill in the first two items.

mods.betterbeginnings.smelter.removerecipe (IITEMSTACK OUTPUT, INGREDIENT Input);

// Remove a furnace formula.

mods.betterbeginnings.smelter.removeoutput (IITEMSTACK OUTPUT);

// Remove all the furnace formula of the item.