Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. local ifs = {
  2. a = peripheral.wrap("front"),
  3. b = peripheral.wrap("back"),
  4. c = peripheral.wrap("left"),
  5. d = peripheral.wrap("right")
  6. }
  7.  
  8. local pos = {
  9. a = {p = "a", s = "WEST"},
  10. b = {p = "a", s = "UP"},
  11. c = {p = "a", s = "DOWN"},
  12. d = {p = "b", s = "EAST"},
  13. e = {p = "b", s = "UP"},
  14. f = {p = "b", s = "DOWN"},
  15. g = {p = "c", s = "NORTH"},
  16. h = {p = "c", s = "UP"},
  17. i = {p = "c", s = "DOWN"},
  18. j = {p = "d", s = "SOUTH"},
  19. k = {p = "d", s = "UP"},
  20. l = {p = "d", s = "DOWN"},
  21. m = {p = "d", s = "WEST"},
  22. n = {p = "c", s = "EAST"}
  23. }
  24.  
  25. local essentia = {
  26. arbor = "8003e0e23f094ccea997e06935a7f768",
  27. herba = "1c288c94a8a1868d12b5842efa3ad6af",
  28. telum = "3b3b1614a2b9152dcbf2b884ded1e3fc",
  29. terra = "bb9211b894dea99a6b674ebe63759333",
  30. aer = "64630f917da3a7214b1ef2c91a90d090",
  31. meto = "438d48d3ad9a71d7c74b740d9af0d498",
  32. iter = "e02b869d0f5fae947df6187fa86c89ff",
  33. aqua = "358c318e194980b0c0835a9f1ce41750",
  34. ordo = "a77c4b35bbb1a4c84b15122dd52354bf",
  35. metallum = "07275fa65074555c50144eeaadcaa369",
  36. perditio = "18add493aeeb97a3fe71cf8130fe8675",
  37. vitreus = "047206f1fafce8cdc716c9c822b1d2cb",
  38. pannus = "7adcf7ebaa90cc8cbb52edde554d096b",
  39. tutamen = "7efe695fcc02157c8d6b336a22951b18",
  40. alienis = "f4822536f3c421b0c4f7976181d1614d",
  41. fabrico = "4bd51093dae3a8de9f013bdbb9f38e5b",
  42. praecantatio = "b06b63e28f76cf46121ac7ac9f195242"
  43. }
  44.  
  45. function sendItem(letter, item)
  46. ifs[pos[letter].p].exportItem(item, pos[letter].s, 1)
  47. end
  48.  
  49. function addEssentia(name, amount)
  50. ifs[pos["n"].p].exportItem({id = "Thaumcraft:ItemCrystalEssence", nbt_hash = essentia[name]}, pos["n"].s, amount)
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement