I have been trying to use modtweaker to add a custom pulverizer recipe, but even after I do what seemed to be exactly how the tutorials did it, still doesn't work. For example, I tried to make a recipe that inputs compressed cobblestone and outputs 9 sand, and sometimes dirt. I tried restarting minecraft, and using /mt reload multiple times.
The wiki says my script should say something similar to this:
mods.thermalexpansion.Pulverizer.addRecipe(3000, <minecraft:flint_and_steel>, <minecraft:flint>, <minecraft:iron_ingot>, 80);
And this is the script I made. I also added a value that makes compressed cobblestone = cobble9.
mods.thermalexpansion.Pulverizer.addRecipe(5000, cobble9, sand * 9, dirt, 80);
Anyone know what to do?
The wiki says my script should say something similar to this:
mods.thermalexpansion.Pulverizer.addRecipe(3000, <minecraft:flint_and_steel>, <minecraft:flint>, <minecraft:iron_ingot>, 80);
And this is the script I made. I also added a value that makes compressed cobblestone = cobble9.
mods.thermalexpansion.Pulverizer.addRecipe(5000, cobble9, sand * 9, dirt, 80);
Anyone know what to do?