Advertisement
Guest User

startup

a guest
Oct 8th, 2013
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. local basinBack = peripheral.wrap("back")
  2. local basinFront = peripheral.wrap("front")
  3.  
  4. local tableInfoB = basinBack.getTanks("unkown")
  5. local tableInfoF = basinFront.getTanks("unkown")
  6.  
  7. print("Back")
  8. for k, v in pairs(tableInfoB) do
  9.   for x, y in pairs(v) do
  10.     print(x.. ": " .. y)
  11.    end
  12. end
  13.  
  14. print("-------")
  15.  
  16. print("Front")
  17. for k, v in pairs(tableInfoF) do
  18.   for x, y in pairs(v) do
  19.     print (x.. ": ".. y)
  20.   end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement