Guest User

essence

a guest
Jan 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. local ae = peripheral.find("tileinterface")
  2. local d  = peripheral.find("storagedrawers_container_controller")
  3. local a  = peripheral.find("tt_aspectanlyzer")
  4. local c  = peripheral.find("chest") or peripheral.find("iron")
  5.  
  6. for i,v in pairs(d) do
  7.   print(i)
  8. end
  9.  
  10. local items = {}
  11.  
  12. for i,v in pairs(items) do
  13.   for z,t in pairs(v) do
  14.     write(z)
  15.     write(" : ")
  16.     print(t)
  17.   end
  18.   print("---")  
  19.   for z,t in pairs(v["fingerprint"]) do
  20.     write(z)
  21.     write(" : ")
  22.     print(t)
  23.   end
  24.   return
  25. --  print(v["fingerprint"]["id"])
  26. end
Advertisement
Add Comment
Please, Sign In to add comment