Advertisement
Guest User

startup

a guest
May 24th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. mon=peripheral.wrap("top")
  2. mon.setTextScale(3)
  3. mon.setBackgroundColor(1)
  4.  
  5. while true do
  6. sleep(0)
  7. mon.clear()
  8. mon.setTextColor(8192)
  9.  
  10. mon.setCursorPos(1,1)
  11. mon.write(" Welcome to Eseph")
  12. mon.setCursorPos(4,2)
  13. mon.write(" Enterprise!")
  14.  
  15. mon.setCursorPos(0,3)
  16. mon.setTextColor(1024)
  17. mon.write("---------------------")
  18.  
  19. mon.setCursorPos(2,4)
  20. mon.setTextColor(8192)
  21. mon.write("The in-game time")
  22. mon.setCursorPos(3,5)
  23. mon.write("is now: ")
  24. mon.setTextColor(512)
  25. mon.write(textutils.formatTime(os.time(), true))
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement