Posts by DreamMasterXXL

    Added now Lava Crystal, Ball of Moss, Silky Jewel and Necrotic Bone to Thaumcraft Infusion /Crucible:



    Now the red,yellow and green heart and there canisters are available via Thaumcraft infusion /arcane.


    Changing recipes for the apiary /chest and Bee House



    Changing Forestry Alveary Recipes be craftable in the Forestry Carpenter:



    Making Minecraft a little bit more magical.


    Brewing Stand, Beacon, Enderchest and Enchantment Table now have a Thaumcraft Infusion/Arcane Recipes:


    I need a little bit of help, I want to make a new recipe for the electric blast furnace to make HSLA steel from rotarycraft, I'm thinking on 2 steel+ 1 magnesium dust=2 hsla steel. Can you provide me the line of code I need please? Because I scroll down scripts to see if there is already one but I'couldn't find anything.


    Thank you.


    You need to import this line first


    Code
    import mods.gregtech.BlastFurnace;


    than using the materials you need (output is HSLA Steel) input Steel and magnesium. how many Ticks 20 Ticks = 1 Sec Eu per tick (for example 128) and temperature (for example 3000 because high Tier)


    BlastFurnace.addRecipe(output, input1, input2, durationTicks, euPerTick, temperature);


    The Minetweaker code (you hace to find out the hsla steel name by your selfe because i dont use Reikas Mods. I take the GT hsla Steel inside and you can change that.


    Code
    BlastFurnace.addRecipe(<gregtech:gt.metaitem.01:11322>, <gregtech:gt.metaitem.01:2305> * 2, <gregtech:gt.metaitem.01:2018> * 2, 1200, 128, 3000);