Advertisement
Guest User

teleport monitors

a guest
May 10th, 2013
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. local mon = peripheral.wrap("monitor_4")
  2. local mon2 = peripheral.wrap("monitor_5")
  3. local mon3 = peripheral.wrap("monitor_6")
  4. local mon4 = peripheral.wrap("monitor_7")
  5.  
  6. mon.setBackgroundColor(colors.red)
  7. mon2.setBackgroundColor(colors.yellow)
  8. mon3.setBackgroundColor(colors.green)
  9. mon4.setBackgroundColor(colors.cyan)
  10.  
  11. mon.setTextColor(colors.blue)
  12. mon2.setTextColor(colors.red)
  13. mon3.setTextColor(colors.black)
  14. mon4.setTextColor(colors.gray)
  15.  
  16. mon.setCursorPos(1,1)
  17. mon2.setCursorPos(1,1)
  18. mon3.setCursorPos(1,1)
  19. mon4.setCursorPos(1,1)
  20.  
  21. mon.clear()
  22. mon2.clear()
  23. mon3.clear()
  24. mon4.clear()
  25.  
  26. mon.write("Teleporting...")
  27. mon2.write("Teleporting...")
  28. mon3.write("Teleporting...")
  29. mon4.write("Teleporting...")
  30.  
  31.  
  32. os.sleep(1)
  33.  
  34.  
  35. mon.setBackgroundColor(colors.lime)
  36. mon2.setBackgroundColor(colors.lightblue)
  37. mon3.setBackgroundColor(colors.pink)
  38. mon4.setBackgroundColor(colors.orange)
  39.  
  40. mon.setTextColor(colors.blue)
  41. mon2.setTextColor(colors.black)
  42. mon3.setTextColor(colors.gray)
  43. mon4.setTextColor(colors.green)
  44.  
  45. mon.setCursorPos(1,1)
  46. mon2.setCursorPos(1,1)
  47. mon3.setCursorPos(1,1)
  48. mon4.setCursorPos(1,1)
  49.  
  50. mon.clear()
  51. mon2.clear()
  52. mon3.clear()
  53. mon4.clear()
  54.  
  55. mon.write("Teleporting...")
  56. mon2.write("Teleporting...")
  57. mon3.write("Teleporting...")
  58. mon4.write("Teleporting...")
  59.  
  60.  
  61. os.sleep(1)
  62.  
  63.  
  64. mon.setBackgroundColor(colors.magenta)
  65. mon2.setBackgroundColor(colors.red)
  66. mon3.setBackgroundColor(colors.blue)
  67. mon4.setBackgroundColor(colors.purple)
  68.  
  69. mon.setTextColor(colors.green)
  70. mon2.setTextColor(colors.blue)
  71. mon3.setTextColor(colors.red)
  72. mon4.setTextColor(colors.pink)
  73.  
  74. mon.setCursorPos(1,1)
  75. mon2.setCursorPos(1,1)
  76. mon3.setCursorPos(1,1)
  77. mon4.setCursorPos(1,1)
  78.  
  79. mon.clear()
  80. mon2.clear()
  81. mon3.clear()
  82. mon4.clear()
  83.  
  84. mon.write("Teleporting...")
  85. mon2.write("Teleporting...")
  86. mon3.write("Teleporting...")
  87. mon4.write("Teleporting...")
  88.  
  89.  
  90. os.sleep(1)
  91.  
  92.  
  93. mon.setBackgroundColor(colors.lightblue)
  94. mon2.setBackgroundColor(colors.white)
  95. mon3.setBackgroundColor(colors.lime)
  96. mon4.setBackgroundColor(colors.yellow)
  97.  
  98. mon.setTextColor(colors.red)
  99. mon2.setTextColor(colors.black)
  100. mon3.setTextColor(colors.blue)
  101. mon4.setTextColor(colors.purple)
  102.  
  103. mon.setCursorPos(1,1)
  104. mon2.setCursorPos(1,1)
  105. mon3.setCursorPos(1,1)
  106. mon4.setCursorPos(1,1)
  107.  
  108. mon.clear()
  109. mon2.clear()
  110. mon3.clear()
  111. mon4.clear()
  112.  
  113. mon.write("Teleporting...")
  114. mon2.write("Teleporting...")
  115. mon3.write("Teleporting...")
  116. mon4.write("Teleporting...")
  117.  
  118.  
  119. os.sleep(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement