Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- term.redirect(monitor)
- term.setCursorPos(1,1)
- --Monitor Size: 71x32
- local function drawStats()
- term.clear()
- term.setCursorPos(27,7)
- term.setTextColor(colors.white)
- print("SPAWNER STATUSES:")
- term.setCursorPos(9,11)
- print("SKELETON SPAWNER:")
- term.setCursorPos(45,11)
- print("ZOMBIE SPAWNER:")
- term.setCursorPos(9,15)
- if skeleGrinder == "true" then
- term.setTextColor(colors.lime)
- print("+----+")
- term.setCursorPos(9,16)
- print("| ON |")
- term.setCursorPos(9,17)
- print("+----+")
- term.setCursorPos(19,15)
- term.setTextColor(colors.gray)
- print("+-----+")
- term.setCursorPos(19,16)
- print("| OFF |")
- term.setCursorPos(19,17)
- print("+-----+")
- else
- term.setTextColor(colors.gray)
- print("+----+")
- term.setCursorPos(9,16)
- print("| ON |")
- term.setCursorPos(9,17)
- print("+----+")
- term.setCursorPos(19,15)
- term.setTextColor(colors.red)
- print("+-----+")
- term.setCursorPos(19,16)
- print("| OFF |")
- term.setCursorPos(19,17)
- print("+-----+")
- end
- term.setCursorPos(45,15)
- if zombieGrinder == "true" then
- term.setTextColor(colors.lime)
- print("+----+")
- term.setCursorPos(45,16)
- print("| ON |")
- term.setCursorPos(45,17)
- print("+----+")
- term.setCursorPos(53,15)
- term.setTextColor(colors.gray)
- print("+-----+")
- term.setCursorPos(53,16)
- print("| OFF |")
- term.setCursorPos(53,17)
- print("+-----+")
- else
- term.setTextColor(colors.gray)
- print("+----+")
- term.setCursorPos(45,16)
- print("| ON |")
- term.setCursorPos(45,17)
- print("+----+")
- term.setCursorPos(53,15)
- term.setTextColor(colors.red)
- print("+-----+")
- term.setCursorPos(53,16)
- print("| OFF |")
- term.setCursorPos(53,17)
- print("+-----+")
- end
- term.setCursorPos(31,27)
- term.setTextColor(colors.blue)
- print("+------+")
- term.setCursorPos(31,28)
- print("| BACK |")
- term.setCursorPos(31,29)
- print("+------+")
- term.setTextColor(colors.white)
- end
- drawStats()
- local back = false
- while back ~= true do
- local event, side, x, y = os.pullEvent("monitor_touch")
- if (x >= 9 and x <= 14) and (y >= 15 and y <= 17) then
- local savestate = fs.open("savestate", "w")
- savestate.writeLine("true")
- savestate.writeLine(zombieGrinder)
- savestate.close()
- rednet.send(9,"true")
- skeleGrinder = "true"
- drawStats()
- end
- if (x >= 19 and x <= 26) and (y >= 15 and y <= 17) then
- local savestate = fs.open("savestate", "w")
- savestate.writeLine("false")
- savestate.writeLine(zombieGrinder)
- savestate.close()
- rednet.send(9,"false")
- skeleGrinder = "false"
- drawStats()
- end
- if (x >= 45 and x <= 49) and (y >= 15 and y <= 17) then
- local savestate = fs.open("savestate", "w")
- savestate.writeLine(skeleGrinder)
- savestate.writeLine("true")
- savestate.close()
- rednet.send(10,"true")
- zombieGrinder = "true"
- drawStats()
- end
- if (x >= 53 and x <= 60) and (y >= 15 and y <= 17) then
- local savestate = fs.open("savestate", "w")
- savestate.writeLine(skeleGrinder)
- savestate.writeLine("false")
- savestate.close()
- rednet.send(10,"false")
- zombieGrinder = "false"
- drawStats()
- end
- if (x >= 31 and x <= 39) and (y >= 27 and y <= 29) then
- term.clear()
- term.setCursorPos(1,1)
- back = true
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement