-
Notifications
You must be signed in to change notification settings - Fork 0
Example Scripts
Hannah edited this page Dec 18, 2021
·
5 revisions
My test script that demos all functions
mods.unitweak.IE.press.ignore(["Iron"]);
mods.unitweak.IE.press.remove("plate");
mods.unitweak.IE.press.add("block","ingot",<minecraft:stick>,0);
mods.unitweak.embers.stamper.ignore(["Iron"]);
mods.unitweak.embers.stamper.add("ingot", <minecraft:stick>, 144, 5);
mods.unitweak.embers.stamper.remove("ingot");
mods.unitweak.embers.stamper.add("block", <minecraft:stick>, 144);
mods.unitweak.embers.stamper.add("plate", <minecraft:stick>, 144, 1, <minecraft:stick>);
mods.unitweak.IE.crusher.ignore(["Iron"]);
mods.unitweak.IE.crusher.removeForOutput("dust");
mods.unitweak.IE.crusher.removeForInput("ore");
mods.unitweak.IE.crusher.add("dust", "plate", 1024);
mods.unitweak.IE.crusher.add("plate", "ingot", 1024, 2, 2, <minecraft:gravel>, 0.1);
mods.unitweak.embers.melter.ignore(["Iron"]);
mods.unitweak.embers.melter.add(1000, "ingot");
mods.unitweak.embers.melter.remove("plate");
mods.unitweak.embers.hearthCoil.ignore(["Iron"]);
mods.unitweak.embers.hearthCoil.add("dust", 10, "plate");
mods.unitweak.embers.geologicSeparator.add(<liquid:gold>*10, <embers:ingot_copper>);
mods.unitweak.IE.arcFurnace.ignore(["Iron"]);
mods.unitweak.IE.arcFurnace.remove("ingot");
mods.unitweak.IE.arcFurnace.add("dust", "plate", <minecraft:stick>, 10, 10);
mods.unitweak.IE.refinery.biodieselIngredients([<liquid:alchemical_redstone>*20,<liquid:aluminum>*5],[<liquid:water>*50,<liquid:bronze>*10]);
A useful example that changes the IE Crusher to output Magneticraft's rocky chunks instead of dusts for relevant ores.
mods.unitweak.IE.crusher.removeForInput("ore");
mods.unitweak.ie.crusher.add("rockyChunk", "ore", 1024, 1, 1, <minecraft:gravel>, 0.15);