tomtrein

Untitled

Jul 4th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. local minFuelAmount = 200
  2. while true do
  3. if turtle.getFuelLevel() < minFuelAmount then
  4. turtle.select(9)
  5. turtle.refuel()
  6. turtle.select(1)
  7. end
  8. turtle.forward()
  9. turtle.down()
  10. turtle.select(1)
  11. turtle.placeDown()
  12. turtle.up()
  13. turtle.select(2)
  14. turtle.placeDown()
  15. end
Advertisement
Add Comment
Please, Sign In to add comment