View difference between Paste ID: zjsMc6vX and H2kRyGeu
SHOW: | | - or go back to the newest paste.
1-
mon = peripheral.wrap("right")
1+
mon = peripheral.wrap("top")
2
x=75
3-
mon.write("              ________           _                    ______ ")
3+
4-
print("             / ____/ /_  _______(_)_  ______ _____   / ____/_  _______ ")
4+
while true do
5-
print("            / __/ / / / / / ___/ / / / / __ '__  /  / __/ / / / / _  / ")
5+
6-
print("           / /___/ / /_/ (__  ) / /_/ / / / / / /  / /___/ /_/ /  __/ ")
6+
 mon.clear()
7-
print("          /_____/_/___, /____/_/___,_/_/ /_/ /_/  /_____/\__,  /\___/ ")
7+
 mon.setCursorPos(x,3)
8-
print("                  /____/                                /____/ ")
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