LuaScripts/craftCrystal.lua
2021-01-05 16:54:33 +03:00

23 lines
476 B
Lua

local robot = require("robot")
local component = require("component")
local sides = require("sides")
local rs = component.redstone
local flag = true;
while true do
if rs.getInput(sides.top) > 0 then
if not flag then
robot.turnAround()
flag = true
end
robot.suck()
robot.dropDown()
else
if flag then
robot.turnAround()
os.sleep(5)
flag = false
end
robot.suckDown()
robot.drop()
end
end