Advertisement
DumperJumper

Untitled

May 26th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2. local m = peripheral.wrap("top")
  3. local sx, sy = m.getSize()
  4.  
  5. while true do
  6. m.clear()
  7. m.setCursorPos(1, 1)
  8. m.write(os.day)
  9. m.setCursorPos(sx-5, 1)
  10. m.write(os.time)
  11. m.setCursorPos(1, 2)
  12. for i=1, sx, 1 do
  13. m.write("-")
  14. end
  15.  
  16. rednet.open("bottom")
  17.  
  18.  
  19. rednet.close("bottom")
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement