Create skeletonFarm.lua

This commit is contained in:
erius0 2021-05-14 23:11:50 +03:00 committed by GitHub
parent 63299f9c6a
commit a6b8b8f115
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
skeletonFarm.lua Normal file
View file

@ -0,0 +1,31 @@
local robot = require("robot")
local component = require("component")
local magnet = component.tractor_beam
local inv = component.inventory_controller
shell.execute("clear")
print("U - обновить ПО робота, E - выйти в OpenOS")
function onKeyPressed()
local _, _, _, key, _ = event.pull(0.05, "key_down")
if key == 0x16 then
computer.shutdown(true)
elseif key == 0x12 then
os.exit()
end
end
function farmSkeletons()
for i = 1, 3 do
robot.swingDown()
end
for i = 1, 8 do
robot.select(i)
robot.drop()
end
end
while true do
onKeyPressed()
farmSkeletons()
end