Advertisement
RyuuzakiJulio

BlazeRooms

Feb 11th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. title = " Turtle Clan - Blaze Room Control"
  2.  
  3. w,h = term.getSize()
  4. term.setBackgroundColor(colors.cyan)
  5. term.setTextColor(colors.white)
  6.  
  7. term.clear()
  8. term.setCursorPos(1,1)
  9. term.write(title)
  10.  
  11. term.setCursorPos(1,2)
  12. for i=1,w do
  13. term.write("-")
  14. end
  15.  
  16. term.setCursorPos(1,3)
  17. print("")
  18. print("")
  19. print("")
  20.  
  21. print(" Click on the boxes to control lights")
  22. print("")
  23. print("")
  24. print(" +======+ +=====+")
  25. print(" + ON + + OFF +")
  26. print(" +======+ +=====+")
  27.  
  28. while true do
  29. event, btn, mcx, mcy = os.pullEvent()
  30. if event == "mouse_click" then
  31. if mcy >= 9 and mcy <= 11 then
  32. if mcx >= 12 and mcx<=19 then
  33. term.setCursorPos(13,10)
  34. term.setBackgroundColor(colors.red)
  35. -- term.setTextColor(colors.black)
  36. term.write(" ON ")
  37. redstone.setBundledOutput("top",colors.white)
  38. sleep(0.4)
  39. term.setCursorPos(13,10)
  40. term.setBackgroundColor(colors.cyan)
  41. term.setTextColor(colors.white)
  42. term.write(" ON ")
  43. redstone.setBundledOutput("top",0)
  44. sleep(0.4)
  45. term.setCursorPos(13,10)
  46. term.setBackgroundColor(colors.red)
  47. -- term.setTextColor(colors.black)
  48. term.write(" ON ")
  49. redstone.setBundledOutput("top",colors.white)
  50. sleep(0.4)
  51. term.setCursorPos(13,10)
  52. term.setBackgroundColor(colors.cyan)
  53. term.setTextColor(colors.white)
  54. term.write(" ON ")
  55. redstone.setBundledOutput("top",0)
  56. sleep(0.4)
  57. term.setBackgroundColor(colors.cyan)
  58. term.setTextColor(colors.white)
  59. end
  60. if mcx >= 32 and mcx<= 38 then
  61. term.setCursorPos(33,10)
  62. term.setBackgroundColor(colors.red)
  63. -- term.setTextColor(colors.black)
  64. term.write(" OFF ")
  65. redstone.setBundledOutput("top",colors.orange)
  66. sleep(0.4)
  67. term.setCursorPos(33,10)
  68. term.setBackgroundColor(colors.cyan)
  69. term.setTextColor(colors.white)
  70. term.write(" OFF ")
  71. redstone.setBundledOutput("top",0)
  72. sleep(0.4)
  73. term.setCursorPos(33,10)
  74. term.setBackgroundColor(colors.red)
  75. -- term.setTextColor(colors.black)
  76. term.write(" OFF ")
  77. redstone.setBundledOutput("top",colors.orange)
  78. sleep(0.4)
  79. term.setCursorPos(33,10)
  80. term.setBackgroundColor(colors.cyan)
  81. term.setTextColor(colors.white)
  82. term.write(" OFF ")
  83. redstone.setBundledOutput("top",0)
  84. sleep(0.4)
  85. term.setBackgroundColor(colors.cyan)
  86. term.setTextColor(colors.white)
  87. end
  88.  
  89. end
  90.  
  91.  
  92.  
  93. end
  94.  
  95. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement