Guest User

Untitled

a guest
Jul 13th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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. minetweaker.remove(tile.furnace);
  11.  
  12. recipes.addShaped(tile.furnace, [[tile.stonebrick, tile.stonebrick, tile.stonebrick], [tile.stonebrick, item.flintAndSteel, tile.stonebrick], [tile.stonebrick, tile.stonebrick, tile.stonebrick]]);
  13. recipes.addShaped(item.netherbrick,[[item.hellrock, item.yellowDust, null], [item.yellowDust, item.hellrock, null], [null, null, null]]);
  14.  
  15. furnace.remove(item.netherbrick);
  16. furnace.remove(item.ingotGold);
  17. furnace.remove(item.ingotIron);
  18. furnace.remove(item.coal);
  19. furnace.remove(item.dyePowder.blue);
  20. furnace.remove(item.diamond);
  21. furnace.remove(item.redstone);
  22. furnace.remove(item.emerald);
  23. furnace.remove(item.netherquartz);
  24. furnace.remove(item.thermalexpansion.material.ingotCopper);
  25. furnace.remove(item.thermalexpansion.material.ingotTin);
  26. furnace.remove(item.thermalexpansion.material.ingotNickel);
  27. furnace.remove(item.thermalexpansion.material.ingotLead);
  28. furnace.remove(item.thermalexpansion.material.ingotSilver);
  29. furnace.remove(item.ItemResource."3");
  30. furnace.remove(item.tconstruct.Materials.AluminumIngot);
Advertisement
Add Comment
Please, Sign In to add comment