Advertisement
ecco7777

CC Vertikal Anzeige

Oct 13th, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. m=peripheral.wrap("right")
  2. m.setTextScale(3)
  3. m.setTextColor(colors.yellow)
  4. while true do
  5. m.clear()
  6. x={
  7. "S  ^",
  8. "H ^^^",
  9. "O  |",
  10. "P  |",
  11. "S  |",
  12. "31-60",
  13. "60"}
  14. y=1
  15. while y<=7 do
  16. m.setCursorPos(1,y)
  17. m.write(x[y])
  18. y=y+1
  19. end
  20. sleep(1)
  21. m.clear()
  22. x={
  23. "S ",
  24. "H ",
  25. "O ",
  26. "P ",
  27. "S ",
  28. "31-60",
  29. "60"}
  30. y=1
  31. while y<=7 do
  32. m.setCursorPos(1,y)
  33. m.write(x[y])
  34. y=y+1
  35. end
  36. sleep(1)
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement