Added modules.lua and check fuel
The app now checks, if it has enough fuel, before doing any movement.
This commit is contained in:
parent
591b06aa19
commit
21b3cce893
@ -1,5 +1,6 @@
|
|||||||
--[[Tree Chopping program by Sascha
|
--[[Tree Chopping program by Sascha
|
||||||
Chops down the tree in front of turtle.]]
|
Chops down the tree in front of turtle.]]
|
||||||
|
os.loadAPI('modules.lua') -- Load the modules module
|
||||||
|
|
||||||
print('Chopping tree...')
|
print('Chopping tree...')
|
||||||
|
|
||||||
@ -7,15 +8,17 @@ if not turtle.dig() then -- chop base of tree
|
|||||||
error('Turtle needs a digging tool!')
|
error('Turtle needs a digging tool!')
|
||||||
end
|
end
|
||||||
|
|
||||||
os.sleep(5) -- Wait until everything droppen from the tree
|
os.sleep(3) -- Wait until everything droppen from the tree
|
||||||
for j = 1, 4 do
|
for j = 1, 4 do
|
||||||
for i = 1, 4 do
|
for i = 1, 4 do
|
||||||
turtle.suck() -- Suck up everything
|
turtle.suck() -- Suck up everything
|
||||||
turtle.turnLeft()
|
turtle.turnLeft()
|
||||||
end
|
end
|
||||||
|
check_fuel()
|
||||||
turtle.forward()
|
turtle.forward()
|
||||||
end
|
end
|
||||||
|
|
||||||
for i = 1, 4 do
|
for i = 1, 4 do
|
||||||
|
check_fuel()
|
||||||
turtle.back()
|
turtle.back()
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user