Advertisement
Guest User

startup

a guest
Jul 22nd, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. n = 7
  2. p = peripheral.wrap("back")
  3. p.setTextScale(5)
  4. while true do
  5. p.clear()
  6. if n == -10 then
  7.   n = 7
  8. end
  9. p.setCursorPos(1,1+n)
  10. p.write("B")
  11. p.setCursorPos(1,2+n)
  12. p.write("O")
  13. p.setCursorPos(1,3+n)
  14. p.write("N")
  15. p.setCursorPos(1,4+n)
  16. p.write("J")
  17. p.setCursorPos(1,5+n)
  18. p.write("O")
  19. p.setCursorPos(1,6+n)
  20. p.write("U")
  21. p.setCursorPos(1,7+n)
  22. p.write("R")
  23. n = n-1
  24. sleep(0.4)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement