Advertisement
Guest User

Startup

a guest
Aug 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. m = peripheral.wrap("right")
  2. iron = peripheral.wrap("left")
  3. copper = peripheral.wrap("mcp_mobius_betterbarrel_5")
  4. -- iron
  5. m.setCursorPos(1,1)
  6. local tbl = iron.getStoredItems()
  7. m.write(tbl["display_name"])
  8. m.write(tbl["qty"])
  9. -- copper
  10. m.setCursorPos(1,2)
  11. local tbl = copper.getStoredItems()
  12. m.write(tbl["display_name"])
  13. m.write(tbl["qty"])
  14.  
  15. sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement