Advertisement
CryptekCoding

ac

Mar 31st, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local mon = peripheral.wrap("back")
  2.  
  3. local messages = { "24/7 servers", "IRC Development", "No more 1974 living ", "Portable computers", "Amazing Prices! " }
  4.  
  5. repeat
  6.   for i = 3, #messages do
  7.     mon.setCursorPos(1, 1)
  8.     mon.clear()
  9.     mon.write("Aerial Computing")
  10.     mon.setCursorPos(1, 2)
  11.     mon.write(messages[i])
  12.     sleep(1)
  13.   end
  14. until cows_come_home
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement