Advertisement
Guest User

display

a guest
Aug 21st, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. mon = peripheral.wrap("back")
  2. mon.clear()
  3. mon.setCursorPos(1,1)
  4. mon.write("Floors")
  5. mon.setCursorPos(1,2)
  6. mon.write("---------------------------------------")
  7. mon.setCursorPos(1,3)
  8. mon.write("-1: Central Cable Hub")
  9. mon.setCursorPos(1,4)
  10. mon.write(" 0: Lobby/Enchanting")
  11. mon.setCursorPos(1,5)
  12. mon.write(" 1: Workshop")
  13. mon.setCursorPos(1,6)
  14. mon.write(" 2: MASA R&D Lab")
  15. mon.setCursorPos(1,7)
  16. mon.write(" 3: ME Mainframe")
  17.  
  18. while true do
  19. mon.setCursorPos(22,1)
  20. local nTime = os.time()
  21. mon.write(textutils.formatTime(nTime,false))
  22. sleep(1)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement