Advertisement
whitaleedee

ty and sen

Oct 4th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. local x = 0
  2. local y = 0
  3.  
  4. local nameColor = 512
  5. local sleepTime = .5
  6. local bgColor = 16834
  7.  
  8. local m = peripheral.wrap("right")
  9. m.clear()
  10. m.setTextScale(.5)
  11.  
  12. local bg = {}
  13. bg[1] = " ,o8o, ,o8o, 'Y888Y' \"S888888888\""
  14. bg[2] = ",888888,888888, 'Y' \"7888888Y"
  15. bg[3] = "888888888888888 \"e88j"
  16. bg[4] = "888888888888888 \"Y"
  17. bg[5] = "'8888888888888' ,ae aq,"
  18. bg[6] = " '888888888' ,888'888, ,ae,"
  19. bg[7] = " '88888' '88888' ,88888e"
  20. bg[8] = " '8' 'Y' ,a888b.9888888i"
  21. bg[9] = " ,d88b, 888888888888888"
  22. bg[10]= " 88888.d88b, 88888888888888Y"
  23. bg[11]= " 'Y8888888Y' '8888888888888'"
  24.  
  25. function drawNames()
  26. m.setTextColor(nameColor)
  27. m.setCursorPos(x+1, y) m.write(".---..-. .-..--. .-. .-. .--.")
  28. m.setCursorPos(x, y+1) m.write("{_ _} / // {} \\ | `.' | / {} \\ ")
  29. m.setCursorPos(x+2, y+2) m.write("| | } {/ /\\ \\| |\\ /| |/ /\\ \\ ")
  30. m.setCursorPos(x+2, y+3) m.write("'-' '--''-' '-''-' ' '-''-' '-'")
  31. m.setCursorPos(x+16, y+4) m.write(".----..----..-. .-..-. .-. .--.")
  32. m.setCursorPos(x+16, y+5) m.write("{ {__ | {_ | '| || |/ / / {} \\ ")
  33. m.setCursorPos(x+15, y+6) m.write(".-._} }| {__ | |\\ || |\\ \\ / /\\ \\ ")
  34. m.setCursorPos(x+15, y+7) m.write("'----' '----''-' '-''-' '-''-' '-'")
  35. end
  36.  
  37. local i = 1
  38. while true do
  39. m.clear()
  40. m.setTextColor(bgColor)
  41. for k,v in pairs(bg) do
  42. m.setCursorPos(1+i%2, i+k-1)
  43. m.write(bg[i])
  44. end
  45.  
  46. drawNames()
  47.  
  48. i = i%11 + 1
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement