What you came for:
(Expert) (Normal)
Download and place into your "..\minecraft\modpack\<GameMode>\scripts" folder
Scripts will be added as they are discovered & I can verify they work.
While they should just be drop in for Skyblock, I have not tested them yet. While I am 90% sure your computer will not explode, use at your own risk.
(Forestry BackPack Fix) W.I.P.
Need to fix... no ETA
(Expert) (Normal)
Download and place into your "..\minecraft\modpack\<GameMode>\scripts" folder
Scripts will be added as they are discovered & I can verify they work.
While they should just be drop in for Skyblock, I have not tested them yet. While I am 90% sure your computer will not explode, use at your own risk.
(Forestry BackPack Fix) W.I.P.
Need to fix... no ETA
If you get a bug, Remove the scripts and reproduce BEFORE making a bug report!
If my scripts cause the bug, please post in this thread as it is easier to track
Have Fun!
If my scripts cause the bug, please post in this thread as it is easier to track
Have Fun!
- BoP bamboo thatching recipe
- Stable Unstable Tool crafting w/Extra Utilities & Tinkers (Thanks MYM)
- Energy production via lava, in expert mode
- Buildcraft Iron & Gold Gear Achievements
- Blood Magic Achievements Not Accessible
- Railcraft Tin Plate not craftable
- Items missing in NEI
- No Corn or Rye or HERE
- Magic Bees
- Agricraft Sesame Seed not dropping produce
- 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 )
- Immersive Engineering Biodiesel <-> Forestry Ethanol (Thanks @Peppe )
- Paving Stone of Travel crafting (Thanks @Matryoshika )
- Some people having issue with Botania Recipes with fire in them.
Code:
#Gear Achievement Tree Fix - Expert Only[/LEFT]
recipes.addShapeless(<BuildCraft|Core:ironGearItem>, [<ThermalFoundation:material:12>]);
recipes.addShapeless(<ThermalFoundation:material:12>, [<BuildCraft|Core:ironGearItem>]);
recipes.addShapeless(<BuildCraft|Core:goldGearItem>, [<ThermalFoundation:material:13>]);
recipes.addShapeless(<ThermalFoundation:material:13>, [<BuildCraft|Core:goldGearItem>]);
[LEFT]
Code:
#Sacrificial Orb/Knife Achievement Fix - Expert Only
recipes.addShapeless(<AWWayofTime:sacrificialKnife>, [<AWWayofTime:sacrificialKnife>]);
Code:
#Remove Lava Power - Expert Only
recipes.remove(<MineFactoryReloaded:machine.1:6>);
Code:
#Paving Stone of Travel - Expert Only
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>]]);
Code:
#Amaranth Logs Become Eucalyptus Planks - Throws Error in Normal, still works
mods.thermalexpansion.Sawmill.removeRecipe(<Natura:Rare Tree:2>);
mods.thermalexpansion.Sawmill.addRecipe(800, <Natura:Rare Tree:2>, <Natura:planks:8> * 6);
Code:
#Missing Nuggets
NEI.addEntry(<MagicBees:beeNugget:5>);
NEI.addEntry(<MagicBees:beeNugget:6>);
Code:
#Corn / Rye Fix
recipes.remove(<ExtraTrees:misc:11>);
recipes.remove(<ExtraTrees:misc:9>);
recipes.addShaped(<ExtraTrees:misc:11>, [
[null, <ExtraTrees:misc:8>, null],
[null, null, <ExtraTrees:misc:8>],
[null, <ExtraTrees:misc:8>, null]]);
recipes.addShaped(<ExtraTrees:misc:9>, [
[null, <ExtraTrees:misc:8>, null],
[<ExtraTrees:misc:8>, null, null],
[null, <ExtraTrees:misc:8>, null]]);
Code:
#Sesame Seed Fix
import mods.nei.NEI;
import mods.agricraft.SeedBlacklist;
SeedBlacklist.add(<harvestcraft:sesameseedsseedItem>);
recipes.remove(<harvestcraft:sesameseedsseedItem>);
NEI.hide(<harvestcraft:sesameseedsseedItem>);
Code:
#Tinker Unstable Parts
mods.tconstruct.Casting.addTableRecipe(<TConstruct:toughRod:314>, <liquid:molten.unstableingots> * 432, <TConstruct:metalPattern:14>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:toolRod:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:1>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:pickaxeHead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:2>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:shovelHead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:3>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:hatchetHead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:4>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:swordBlade:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:5>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:wideGuard:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:6>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:handGuard:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:7>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:crossbar:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:8>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:binding:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:9>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:frypanHead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:10>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:signHead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:11>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:knifeBlade:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:12>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:chiselHead:314>, <liquid:molten.unstableingots> * 72, <TConstruct:metalPattern:13>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:toughBinding:314>, <liquid:molten.unstableingots> * 432, <TConstruct:metalPattern:15>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:heavyPlate:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:16>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:broadAxeHead:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:17>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:scytheBlade:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:18>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:excavatorHead:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:19>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:largeSwordBlade:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:20>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:hammerHead:314>, <liquid:molten.unstableingots> * 1152, <TConstruct:metalPattern:21>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:fullGuard:314>, <liquid:molten.unstableingots> * 432, <TConstruct:metalPattern:22>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:ShurikenPart:314>, <liquid:molten.unstableingots> * 72, <TConstruct:Cast>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:CrossbowLimbPart:314>, <liquid:molten.unstableingots> * 576, <TConstruct:Cast:1>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:CrossbowBodyPart:314>, <liquid:molten.unstableingots> * 720, <TConstruct:Cast:2>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:BowLimbPart:314>, <liquid:molten.unstableingots> * 216, <TConstruct:Cast:3>, false, 50);
mods.tconstruct.Casting.addTableRecipe(<TConstruct:arrowhead:314>, <liquid:molten.unstableingots> * 144, <TConstruct:metalPattern:25>, false, 50);
Code:
#Diesel Fuel for IC2
import mods.ic2.SemiFluidGenerator;
SemiFluidGenerator.addFluid(<liquid:biodiesel> * 1, 32);
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:
#AdvancedHeatVent Fix - Currently Disabled
recipes.remove(<IC2:reactorVentDiamond:1>);
recipes.addShaped(<IC2:reactorVentDiamond:0>,[
[<minecraft:iron_bars>, <IC2:reactorVent>, <minecraft:iron_bars>],
[<minecraft:iron_bars>, <minecraft:diamond>, <minecraft:iron_bars>],
[<minecraft:iron_bars>, <IC2:reactorVent>, <minecraft:iron_bars>]]);
Code:
#Reinforced Glass
recipes.remove(<IC2:blockAlloyGlass>);
recipes.addShaped(<IC2:blockAlloyGlass> * 7,[
[<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>*9,[
[<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:
#Gravity Suit Cooling Core Fix
recipes.remove(<GraviSuite:itemSimpleItem:2>);
recipes.addShaped(<GraviSuite:itemSimpleItem:2>,[
[<IC2:reactorCoolantSix:1>, <IC2:reactorHeatSwitchDiamond:1>, <IC2:reactorCoolantSix:1>],
[<IC2:reactorPlatingHeat>, <IC2:itemPartIridium>, <IC2:reactorPlatingHeat>],
[<IC2:reactorCoolantSix:1>, <IC2:reactorHeatSwitchDiamond:1>, <IC2:reactorCoolantSix:1>]]);
Code:
#Hybrid Solar Helmet fix
recipes.remove(<AdvancedSolarPanel:hybrid_solar_helmet>);
recipes.addShaped(<AdvancedSolarPanel:hybrid_solar_helmet>, [
[null, <AdvancedSolarPanel:BlockAdvSolarPanel:1>, null],
[<IC2:itemPartCircuitAdv>, <IC2:itemArmorQuantumHelmet:*>, <IC2:itemPartCircuitAdv>],
[<IC2:itemCable:9>, <IC2:blockElectric:5>, <IC2:itemCable:9>]]);
Code:
#Advanced Solar Helmet fix
recipes.remove(<AdvancedSolarPanel:advanced_solar_helmet>);
recipes.addShaped(<AdvancedSolarPanel:advanced_solar_helmet>, [
[null, <AdvancedSolarPanel:BlockAdvSolarPanel>, null],
[<IC2:itemPartCircuitAdv>, <IC2:itemArmorNanoHelmet:*>, <IC2:itemPartCircuitAdv>],
[<IC2:itemCable:3>, <IC2:blockElectric:3>, <IC2:itemCable:3>]]);
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:
#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:
#Quartz Fix
<ore:dustNetherQuartz>.addAll(<ore:dustQuartz>);
<ore:dustQuartz>.mirror(<ore:dustNetherQuartz>);
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:
#Recipe fix for Smooth blackstone -> Paved Blackstone
recipes.removeShapeless(<minecraft:stone_button>, [<MineFactoryReloaded:stone>]);
recipes.addShapeless(<minecraft:stone_button>, [<minecraft:stone>]);
Code:
#Railcraft Tin Plate Fix
val tin = <ore:ingotTin>;
mods.railcraft.Rolling.addShaped(<Railcraft:part.plate:2>, [
[tin, tin, null],
[tin, tin, null],
[null, null, null]]);
Code:
#Random MagicBees & Botania recipe Mismatch - Not broken, but some people have issues.
Apothecary.removeRecipe(<Botania:specialFlower>.withTag({type: "beegonia"}));
Apothecary.removeRecipe(<Botania:specialFlower>.withTag({type: "hiveacynth"}));
Apothecary.removeRecipe(<Botania:specialFlower>.withTag({type: "hibeescus"}));
Apothecary.addRecipe(<Botania:specialFlower>.withTag({type: "beegonia"}), [<Botania:petal>, <Botania:petal:4>, <Botania:petal:4>, <Botania:petal:15>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>]);
Apothecary.addRecipe(<Botania:specialFlower>.withTag({type: "hiveacynth"}), [<Botania:petal:3>, <Botania:petal:9>, <Botania:petal:9>, <Botania:petal:11>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:23>, <Botania:manaResource:6>]);
Apothecary.addRecipe(<Botania:specialFlower>.withTag({type: "hibeescus"}), [<Botania:petal:1>, <Botania:petal:2>, <Botania:petal:2>, <Botania:petal:2>, <Botania:petal:14>, <Botania:manaResource:23>, <Botania:rune:3>, <Botania:rune:5>, <Botania:rune:14>, <Botania:rune:11>, <Botania:rune:15>, <Botania:manaResource:6>]);
Code:
#Bamboo Thatching Recipe
val stickForCrop = <ore:stickCrop>;
<ore:stickCrop>.mirror(<ore:stickWood>);
stickForCrop.remove(<BiomesOPlenty:bamboo>);
recipes.removeShaped(<AgriCraft:cropsItem>);
recipes.addShaped(<AgriCraft:cropsItem> * 4,[
[stickForCrop, stickForCrop],
[stickForCrop, stickForCrop]]);
Last edited: