Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local minFuelAmount = 200
- while true do
- for i=1, 14 do
- turtle.select(i)
- for o=1, 64 do
- if turtle.getFuelLevel() < minFuelAmount then
- turtle.select(16)
- turtle.refuel()
- turtle.select(i)
- end
- while not turtle.placeDown() do
- turtle.digDown()
- end
- while not turtle.forward() do
- turtle.dig()
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment