Advertisement
Guest User

MobSpawners

a guest
Aug 5th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.37 KB | None | 0 0
  1. term.redirect(monitor)
  2. term.setCursorPos(1,1)
  3. --Monitor Size: 71x32
  4. local function drawStats()
  5.      term.clear()
  6.      term.setCursorPos(27,7)
  7.      term.setTextColor(colors.white)
  8.      print("SPAWNER STATUSES:")
  9.      term.setCursorPos(9,11)
  10.      print("SKELETON SPAWNER:")
  11.      term.setCursorPos(45,11)
  12.      print("ZOMBIE SPAWNER:")
  13.      term.setCursorPos(9,15)
  14.      if skeleGrinder == "true" then
  15.           term.setTextColor(colors.lime)
  16.           print("+----+")
  17.           term.setCursorPos(9,16)
  18.           print("| ON |")
  19.           term.setCursorPos(9,17)
  20.           print("+----+")
  21.           term.setCursorPos(19,15)
  22.           term.setTextColor(colors.gray)
  23.           print("+-----+")
  24.           term.setCursorPos(19,16)
  25.           print("| OFF |")
  26.           term.setCursorPos(19,17)
  27.           print("+-----+")
  28.      else
  29.           term.setTextColor(colors.gray)
  30.           print("+----+")
  31.           term.setCursorPos(9,16)
  32.           print("| ON |")
  33.           term.setCursorPos(9,17)
  34.           print("+----+")
  35.           term.setCursorPos(19,15)
  36.           term.setTextColor(colors.red)
  37.           print("+-----+")
  38.           term.setCursorPos(19,16)
  39.           print("| OFF |")
  40.           term.setCursorPos(19,17)
  41.           print("+-----+")
  42.      end
  43.      term.setCursorPos(45,15)
  44.      if zombieGrinder == "true" then
  45.           term.setTextColor(colors.lime)
  46.           print("+----+")
  47.           term.setCursorPos(45,16)
  48.           print("| ON |")
  49.           term.setCursorPos(45,17)
  50.           print("+----+")
  51.           term.setCursorPos(53,15)
  52.           term.setTextColor(colors.gray)
  53.           print("+-----+")
  54.           term.setCursorPos(53,16)
  55.           print("| OFF |")
  56.           term.setCursorPos(53,17)
  57.           print("+-----+")
  58.      else
  59.           term.setTextColor(colors.gray)
  60.           print("+----+")
  61.           term.setCursorPos(45,16)
  62.           print("| ON |")
  63.           term.setCursorPos(45,17)
  64.           print("+----+")
  65.           term.setCursorPos(53,15)
  66.           term.setTextColor(colors.red)
  67.           print("+-----+")
  68.           term.setCursorPos(53,16)
  69.           print("| OFF |")
  70.           term.setCursorPos(53,17)
  71.           print("+-----+")
  72.      end
  73.      term.setCursorPos(31,27)
  74.      term.setTextColor(colors.blue)
  75.      print("+------+")
  76.      term.setCursorPos(31,28)
  77.      print("| BACK |")
  78.      term.setCursorPos(31,29)
  79.      print("+------+")
  80.      term.setTextColor(colors.white)
  81. end
  82. drawStats()
  83. local back = false
  84. while back ~= true do
  85.   local event, side, x, y = os.pullEvent("monitor_touch")
  86.  
  87.   if (x >= 9 and x <= 14) and (y >= 15 and y <= 17) then
  88.     local savestate = fs.open("savestate", "w")
  89.     savestate.writeLine("true")
  90.     savestate.writeLine(zombieGrinder)
  91.     savestate.close()
  92.     rednet.send(9,"true")
  93.     skeleGrinder = "true"
  94.     drawStats()
  95.   end
  96.   if (x >= 19 and x <= 26) and (y >= 15 and y <= 17) then
  97.     local savestate = fs.open("savestate", "w")
  98.     savestate.writeLine("false")
  99.     savestate.writeLine(zombieGrinder)
  100.     savestate.close()
  101.     rednet.send(9,"false")
  102.     skeleGrinder = "false"
  103.     drawStats()
  104.   end
  105.   if (x >= 45 and x <= 49) and (y >= 15 and y <= 17) then
  106.     local savestate = fs.open("savestate", "w")
  107.     savestate.writeLine(skeleGrinder)
  108.     savestate.writeLine("true")
  109.     savestate.close()
  110.     rednet.send(10,"true")
  111.     zombieGrinder = "true"
  112.     drawStats()
  113.   end
  114.   if (x >= 53 and x <= 60) and (y >= 15 and y <= 17) then
  115.     local savestate = fs.open("savestate", "w")
  116.     savestate.writeLine(skeleGrinder)
  117.     savestate.writeLine("false")
  118.     savestate.close()
  119.     rednet.send(10,"false")
  120.     zombieGrinder = "false"
  121.     drawStats()
  122.   end
  123.   if (x >= 31 and x <= 39) and (y >= 27 and y <= 29) then
  124.     term.clear()
  125.     term.setCursorPos(1,1)
  126.     back = true
  127.   end
  128. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement