Advertisement
Cognomech

ad

Nov 21st, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mon = peripheral.wrap("top")
  2. x=75
  3.  
  4. while true do
  5.  
  6.  mon.clear()
  7.  mon.setCursorPos(x,3)
  8.  mon.write("              ________           _                    ______ ")
  9.  mon.setCursorPos(x,4)
  10.  mon.write("             / ____/ /_  _______(_)_  ______ _____   / ____/_  _______ ")
  11.  mon.setCursorPos(x,5)
  12.  mon.write("            / __/ / / / / / ___/ / / / / __ '__  /  / __/ / / / / _  / ")
  13.  mon.setCursorPos(x,6)
  14.  mon.write("           / /___/ / /_/ (__  ) / /_/ / / / / / /  / /___/ /_/ /  __/ ")
  15.  mon.setCursorPos(x,7)
  16.  mon.write("          /_____/_/___, /____/_/___,_/_/ /_/ /_/  /_____/\__,  /\___/ ")
  17.  mon.setCursorPos(x,8)
  18.  mon.write("                  /____/                                /____/ ")
  19.  
  20.  mon.setCursorPos(66,1)
  21.  time = textutils.formatTime(os.time(),"false")
  22.  mon.write(time)
  23.  
  24.  mon.setCursorPos(20,12)
  25.  mon.write("Elysium Eye by Arcadia (C) 2014.")
  26.  mon.setCursorPos(1,1)
  27.  mon.write("Elysium Eye - Making Virtual Reality...a Reality")
  28.  
  29.  x=x-1
  30.  if x==-80 then
  31.   x=75
  32.  end
  33.  
  34.  sleep(0.15)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement