How to enable semi vanilla mode

I’ve replied to that with my mtutils recipes, but usually you won’t need mtutils to add a recipe to the furnace. That being said Gregtech makes some hard changes to rule out other mods furnace recipes so it might overwrite an iron recipe too, best way to find out would be to try it.

This is my furnace script:

#for adding fuels
furnace.setFuel(<minecraft:leaves:*>, 50);
furnace.setFuel(<IC2:itemBiochaff>, 50);
furnace.setFuel(<IC2:itemFuelPlantBall>, 50);

#for adding recipes
//(output, input, xp amount)
#chem tube
furnace.addRecipe(<gregtech:gt.meta.chemtube>, <gregtech:gt.meta.dustTiny:8100>, 0.3);

#Glass Bottle
furnace.addRecipe(<minecraft:glass_bottle>, <gregtech:gt.meta.dustSmall:8100>, 0.25);

#Calcite ingot, Chunk and Nugget  //output, input
furnace.addRecipe(<gregtech:gt.meta.ingot:9107>, <gregtech:gt.meta.dust:9107>);
furnace.addRecipe(<gregtech:gt.meta.chunkGt:9107>, <gregtech:gt.meta.dustSmall:9107>);
furnace.addRecipe(<gregtech:gt.meta.nugget:9107>, <gregtech:gt.meta.dustTiny:9107>);

I’m sure you can work out any iron ingot recipes you want. Hold an item and type /mt hand to get its name, you can check this site for documentation too.

(edited by admin to put the code into a codefence)

4 Likes