Advertisement
Guest User

startup

a guest
Dec 17th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. local pos = 7
  2. local max = 0
  3. local bc = "Mystcraft  ME-System"
  4. max = string.len(bc)
  5. max = max-1
  6. max = max*-1
  7. m = peripheral.wrap("back")
  8. m.clear()
  9. m.setCursorPos(1,1)
  10. m.setTextScale(5)
  11. m.setTextColour(32768)
  12. m.setBackgroundColor(8192)
  13. while true do
  14.   if pos==max then
  15.     pos = 7
  16.   end
  17.  
  18.   m.clear()
  19.   m.setCursorPos(pos,1)
  20.   m.write(bc)
  21.   pos = pos-1
  22.   os.sleep(0.2)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement