Build 125
Minecraft 1.7.10
Forge 10.13.2.1230
- Update the crafting station to support MT properly
- Crafting station now needs redstone signal to craft automatically
- Add a "clear" button to the crafting station?!
- Fix crash when fake players interact with equipped backpacks (#279)
mods.betterstorage.CraftingStation.addShaped(<output>, <input>, [experience], [crafting time])
mods.betterstorage.CraftingStation.addShapedMirrored(<output>, <input>, [experience], [crafting time])
mods.betterstorage.CraftingStation.addShapeless(<output>, <input>, [experience], [crafting time])
// Output can be a single item or an array of up to 9 items.
// Experience and crafting time are optional and default to 0.
// Turns 8 rotten flesh and 1 bonemeal into 4 leather for 2 levels.
var flesh = <minecraft:rotten_flesh>;
mods.betterstorage.CraftingStation.addShapeless(<minecraft:leather> * 4,
[ flesh, flesh, flesh, flesh, flesh, flesh, flesh, flesh, <minecraft:dye:15> ], 2);
// Adds a reverse recipe for crafting stations.
mods.betterstorage.CraftingStation.addShapeless(
[ <minecraft:stonebrick>, <minecraft:light_weighted_pressure_plate>, <minecraft:stonebrick>,
<minecraft:piston>, <minecraft:crafting_table>, <minecraft:piston>,
<minecraft:planks>, <betterstorage:crate>, <minecraft:planks> ],
[ <betterstorage:craftingStation> ]);