theo33500

Untitled

Sep 21st, 2016
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. glass = peripheral.wrap("side the Bridge is on")
  2.  
  3. function addBox()
  4.  
  5. glass.addBox(1,1,80,10,0xFFFFFF,0.2)
  6.  
  7. end
  8.  
  9. function timeDis()
  10.  
  11. time = textutils.formatTime(os.time(), false)
  12.  
  13. glass.addText(5,2,"TIME: " .. time, 0xFF0000)
  14.  
  15. end
  16.  
  17. function start()
  18.  
  19. while true do
  20.  
  21. glass.clear()
  22.  
  23. addBox()
  24.  
  25. timeDis()
  26.  
  27. glass.sync()
  28.  
  29. sleep(0.1)
  30.  
  31. end
  32.  
  33. end
  34.  
  35. start()
Add Comment
Please, Sign In to add comment