Guest User

Untitled

a guest
Jul 13th, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. # See the forum post for example and documentation.
  2. version 2;
  3.  
  4. # set your list of server admin usernames here
  5. # admins are privileged users and will receive
  6. # any error messages that might occur.
  7. minetweaker.setAdmins("Myself", "MyAdminBuddy");
  8.  
  9. # Add your commands here
  10.  
  11. recipes.removeShaped(tile.furnace);
  12.  
  13. recipes.addShaped(tile.furnace, [[tile.stonebrick, tile.stonebrick, tile.stonebrick][tile.stonebrick, item.flintAndSteel;, tile.stonebrick][tile.stonebrick, tile.stonebrick, tile.stonebrick]]);
  14. recipes.addShaped(item.netherbrick,[[item.netherbrick, item.yellowDust, null][item.yellowDust, item.netherbrick, null][null, null, null]]);
  15.  
  16. furnace.removeRecipe(item.netherbrick, item.hellrock);
  17. furnace.removeRecipe(item.ingotGold, tile.oreGold);
  18. furnace.removeRecipe(item.ingotIron, tile.oreIron);
  19. furnace.removeRecipe(item.coal, tile.oreCoal);
  20. furnace.removeRecipe(item.dyePowder.blue, tile.oreLapis);
  21. furnace.removeRecipe(item.diamond, tile.oreDiamond);
  22. furnace.removeRecipe(item.redstone, tile.oreRedstone);
  23. furnace.removeRecipe(item.emerald, tile.oreEmerald);
  24. furnace.removeRecipe(item.netherquartz, tile.netherquartz);
  25. furnace.removeRecipe(item.thermalexpansion.material.ingotCopper, tile.thermalexpansion.ore.copper.name);
  26. furnace.removeRecipe(item.thermalexpansion.material.ingotTin, tile.thermalexpansion.ore.tin.name);
  27. furnace.removeRecipe(item.thermalexpansion.material.ingotNickel, tile.thermalexpansion.ore.nickel.name);
  28. furnace.removeRecipe(item.thermalexpansion.material.ingotLead, tile.thermalexpansion.ore.lead.name);
  29. furnace.removeRecipe(item.thermalexpansion.material.ingotSilver, tile.thermalexpansion.ore.silver.name);
  30. furnace.removeRecipe(item.ItemResource."3", tile.blockCustomOre);
  31. furnace.removeRecipe(item.tconstruct.Materials.AluminumIngot, items.MetalOre.Aluminum);
Advertisement
Add Comment
Please, Sign In to add comment