Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- title = " Turtle Clan - Blaze Room Control"
- w,h = term.getSize()
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- term.clear()
- term.setCursorPos(1,1)
- term.write(title)
- term.setCursorPos(1,2)
- for i=1,w do
- term.write("-")
- end
- term.setCursorPos(1,3)
- print("")
- print("")
- print("")
- print(" Click on the boxes to control lights")
- print("")
- print("")
- print(" +======+ +=====+")
- print(" + ON + + OFF +")
- print(" +======+ +=====+")
- while true do
- event, btn, mcx, mcy = os.pullEvent()
- if event == "mouse_click" then
- if mcy >= 9 and mcy <= 11 then
- if mcx >= 12 and mcx<=19 then
- term.setCursorPos(13,10)
- term.setBackgroundColor(colors.red)
- -- term.setTextColor(colors.black)
- term.write(" ON ")
- redstone.setBundledOutput("top",colors.white)
- sleep(0.4)
- term.setCursorPos(13,10)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- term.write(" ON ")
- redstone.setBundledOutput("top",0)
- sleep(0.4)
- term.setCursorPos(13,10)
- term.setBackgroundColor(colors.red)
- -- term.setTextColor(colors.black)
- term.write(" ON ")
- redstone.setBundledOutput("top",colors.white)
- sleep(0.4)
- term.setCursorPos(13,10)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- term.write(" ON ")
- redstone.setBundledOutput("top",0)
- sleep(0.4)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- end
- if mcx >= 32 and mcx<= 38 then
- term.setCursorPos(33,10)
- term.setBackgroundColor(colors.red)
- -- term.setTextColor(colors.black)
- term.write(" OFF ")
- redstone.setBundledOutput("top",colors.orange)
- sleep(0.4)
- term.setCursorPos(33,10)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- term.write(" OFF ")
- redstone.setBundledOutput("top",0)
- sleep(0.4)
- term.setCursorPos(33,10)
- term.setBackgroundColor(colors.red)
- -- term.setTextColor(colors.black)
- term.write(" OFF ")
- redstone.setBundledOutput("top",colors.orange)
- sleep(0.4)
- term.setCursorPos(33,10)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- term.write(" OFF ")
- redstone.setBundledOutput("top",0)
- sleep(0.4)
- term.setBackgroundColor(colors.cyan)
- term.setTextColor(colors.white)
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement