12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
API = require("buttonAPI")
local event = require("event")
local computer = require("computer")
local term = require("term")
local component = require("component")
local gpu = component.gpu
local rs = component.redstone
local colors = require("colors")
local side = require("sides")
local proc = require("process")
local quarryActive = false
local quarryRuns = 0
local timer1
function API.fillTable()
API.setTable("Toggle Quarry", toggleQuarry, 5,20,3,5)
API.setTable("Free Ram", freemen, 25,35,3,5)
API.setTable("Reboot", reboot, 40,50,3,5)
API.screen()
end
function getClick(p1, p2, p3, x, y)
if x == nil or y == nil then
local h, w = gpu.getResolution()
gpu.set(h, w, ".")
gpu.set(h, w, " ")
else
API.checkxy(x,y)
end
end
function toggleSpawning()
API.toggleButton("Toggle Quarry")
if buttonStatus == true then
toggleQuarry = true
else
toggleQuarry = false
end
end
function activateRedstone()
if quarryActive then
rs.setOutput(side.west, 15)
quarryRuns = quarryRuns + 1
event.timer(1,deactivateRedstone())
end
end
function deactivateRedstone()
rs.setOutput(side.west, 0)
if quarryActive then
event.timer(12,activateRedstone())
end
end
function reboot()
rs.setOutput(side.top,0)
computer.shutdown(true)
end
function updateScreen()
API.label(1,24,"Quarry at run: "..quarryRuns)
end
term.setCursorBlink(false)
gpu.setResolution(80, 25)
API.clear()
API.fillTable()
API.heading("Frame Quarry Script for ironhide.de")
API.label(1,24,"Quarry at run: "..quarryRuns)
event.listen("touch",getClick())
event.timer(5, updateScreen(), math.huge)