What you came for:
(Expert) (Normal)
Download and place into your script folder
More will be added as they come along and after I can verify they work.
(Expert) (Normal)
Download and place into your script folder
More will be added as they come along and after I can verify they work.
Bugs:
- Can not output MFSU into Immersive Engineering HV Connector
- Not a bug, Mod author changed values.
- Use x4 MFE's per MFSU then combine the lines at an HV Wire Relay
- Tinkers parts made from Unstable Ingots not Craftable
- Can't fix, Need Mod Update
- Computercraft broken bitwise operations
- Can't fix, Need Mod Update
- Cant Craft Green Heart Canisters (Thanks MYM)
- Can not craft wheat into seeds, only flour
- Can't Craft MT Core
- Can not shift click some IC2 recipes
- Thaumcraft Nugget Duplication Bug
- Immersive Engineering Coal Coke Fix (Thanks iTpyn )
- Quartz oreDictionary fix (Thanks iTpyn )
- Minecart Iron/Steel Dupe (Thanks MYM)
- Amaranth logs become eucalyptus planks (Thanks Dezil_nz )
- Add Immersive Engineering BioDiesel to Semifluid Generator
- Immersive Engineering Biodiesel <-> Forestry Ethanol (Thanks Peppe )
- Paving Stone of Travel crafting (Thanks Matryoshika )
- Create a new file, "fix.zs" for example.
- Copy the fix into the file and save.
- Place file into the "\minecraft\modpack\common\scripts" folder.
- Make sure it ends in ".zs" and not ".txt" or ".doc"
Code:
#Green Heart Canister
recipes.addShaped(<TConstruct:heartCanister:6>,[
[<TConstruct:heartCanister:2>, <TConstruct:heartCanister:4>, null],
[<TConstruct:diamondApple>, <minecraft:nether_star>, null] ]);
Code:
#Diesel Fuel for IC2
import mods.ic2.SemiFluidGenerator;
SemiFluidGenerator.addFluid(<liquid:biodiesel> * .5, 16);
Code:
#wheat seeds recipe:
recipes.addShapeless(<minecraft:wheat_seeds> * 2, [<minecraft:wheat>, <minecraft:wheat>]);
Code:
#MT Core Fix
recipes.remove(<AdvancedSolarPanel:asp_crafting_items:12>);
recipes.addShaped(<AdvancedSolarPanel:asp_crafting_items:12>,[
[<AdvancedSolarPanel:asp_crafting_items:5>, <IC2:reactorReflectorThick:1>, <AdvancedSolarPanel:asp_crafting_items:5>],
[<AdvancedSolarPanel:asp_crafting_items:5>, null, <AdvancedSolarPanel:asp_crafting_items:5>],
[<AdvancedSolarPanel:asp_crafting_items:5>, <IC2:reactorReflectorThick:1>, <AdvancedSolarPanel:asp_crafting_items:5>]]);
Code:
#Reinforced Glass
recipes.remove(<IC2:blockAlloyGlass>);
recipes.addShaped(<IC2:blockAlloyGlass>,[
[<minecraft:glass>, <IC2:itemPartAlloy>, <minecraft:glass>],
[<minecraft:glass>, <minecraft:glass>, <minecraft:glass>],
[<minecraft:glass>, <IC2:itemPartAlloy>, <minecraft:glass>]]);
Code:
#Glass Fiber Cable
recipes.remove(<IC2:itemCable:9>);
recipes.addShaped(<IC2:itemCable:9>,[
[<minecraft:glass>, <minecraft:glass>, <minecraft:glass>],
[<IC2:itemDust2:2>, <ore:dustSilver>, <IC2:itemDust2:2>],
[<minecraft:glass>, <minecraft:glass>, <minecraft:glass>]]);
Code:
#Energium Dust
recipes.remove(<IC2:itemDust2:2>);
recipes.addShaped(<IC2:itemDust2:2>,[
[<minecraft:redstone>, <IC2:itemDust2:1>, <minecraft:redstone>],
[<IC2:itemDust2:1>, <minecraft:redstone>, <IC2:itemDust2:1>],
[<minecraft:redstone>, <IC2:itemDust2:1>, <minecraft:redstone>]]);
Code:
#Compressor
recipes.remove(<IC2:blockMachine:5>);
recipes.addShaped(<IC2:blockMachine:5>,[
[<minecraft:stone>, null, <minecraft:stone>],
[<minecraft:stone>, <IC2:blockMachine>, <minecraft:stone>],
[<minecraft:stone>, <IC2:itemPartCircuit>, <minecraft:stone>]]);
Code:
#Crop-matron
recipes.remove(<IC2:blockMachine2:2>);
recipes.addShaped(<IC2:blockMachine2:2>,[
[<IC2:itemPartCircuit>, <minecraft:chest>, <IC2:itemPartCircuit>],
[<IC2:itemCellEmpty>, <IC2:blockMachine>, <IC2:itemCellEmpty>],
[<IC2:blockCrop>, <IC2:blockCrop>, <IC2:blockCrop>]]);
Code:
#Liquid Heat Exchanger
recipes.remove(<IC2:blockMachine2:12>);
recipes.addShaped(<IC2:blockMachine2:12>,[
[<minecraft:glass>, <IC2:itemCellEmpty>, <minecraft:glass>],
[<minecraft:glass>, <IC2:itemCellEmpty>, <minecraft:glass>],
[<IC2:itemCasing:4>, <IC2:itemRecipePart:5>, <IC2:itemCasing:4>]]);
Code:
#Tesla Coil
recipes.remove(<IC2:blockMachine2:1>);
recipes.addShaped(<IC2:blockMachine2:1>,[
[<minecraft:redstone>, <minecraft:redstone>, <minecraft:redstone>],
[<minecraft:redstone>, <IC2:blockElectric:4>, <minecraft:redstone>],
[<IC2:itemCasing:4>, <IC2:itemPartCircuit>, <IC2:itemCasing:4>]]);
Code:
#Solar Distiller
recipes.remove(<IC2:blockMachine3:3>);
recipes.addShaped(<IC2:blockMachine3:3>,[
[<minecraft:glass>, <minecraft:glass>, <minecraft:glass>],
[<minecraft:glass>, null, <minecraft:glass>],
[<IC2:itemFluidCell>, <IC2:blockMachine>, <IC2:itemFluidCell>]]);
Code:
#TC Nugget dupe Fix
mods.thaumcraft.Aspects.remove(<Thaumcraft:ItemNugget>, "metallum 4");
mods.thaumcraft.Aspects.set(<Thaumcraft:ItemNugget>, "metallum 1");
Code:
#Coal Coke Fix
furnace.setFuel(<ImmersiveEngineering:stoneDecoration:3>, 32000);
mods.railcraft.BlastFurnace.addFuel(<ImmersiveEngineering:material:6>);
mods.railcraft.BlastFurnace.addFuel(<ImmersiveEngineering:stoneDecoration:3>);
Code:
#Quartz Fix
<ore:dustNetherQuartz>.addAll(<ore:dustQuartz>);
<ore:dustQuartz>.mirror(<ore:dustNetherQuartz>);
Code:
#Minecart Dupe Fix
recipes.remove(<minecraft:minecart>);
recipes.addShaped(<minecraft:minecart>,[
[<minecraft:iron_ingot>, null, <minecraft:iron_ingot>],
[<minecraft:iron_ingot>, <minecraft:iron_ingot>, <minecraft:iron_ingot>],
[null, null, null]]);
Code:
#Amaranth Logs Become Eucalyptus Planks
mods.thermalexpansion.Sawmill.removeRecipe(<Natura:Rare Tree:2>);
mods.thermalexpansion.Sawmill.addRecipe(800, <Natura:Rare Tree:2>, <Natura:planks:8> * 6);
Code:
#Biodiesel<->Forestry Ethanol
mods.buildcraft.Refinery.addRecipe(<liquid:bioethanol> * 10, 880, 1, <liquid:biodiesel>*5, <liquid:biodiesel>*5);
mods.buildcraft.Refinery.addRecipe(<liquid:biodiesel> * 10, 10, 1, <liquid:bioethanol>*5, <liquid:bioethanol>*5);
Code:
#Paving Stone of Travel
mods.thaumcraft.Arcane.removeRecipe(<Thaumcraft:blockCosmeticSolid:2>);
mods.thaumcraft.Arcane.addShaped("PAVETRAVEL", <Thaumcraft:blockCosmeticSolid:2>*4, "aer 10, terra 10, ordo 10", [
[<Thaumcraft:blockCosmeticSolid:7>, <ore:runeAirB>, <Thaumcraft:blockCosmeticSolid:7>],
[<minecraft:sugar>, null, <minecraft:sugar>],
[<Thaumcraft:blockCosmeticSolid:7>, <ore:runeEarthB>, <Thaumcraft:blockCosmeticSolid:7>]]);
Last edited: