Advertisement
rungholt

onelayerawaytop

Aug 6th, 2023 (edited)
1,057
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. local function checkFuel()
  2.     while turtle.getFuelLevel() <= 200 do
  3.         turtle.select(16)
  4.         turtle.refuel(16)
  5.         turtle.select(1)
  6.     end
  7. end
  8.  
  9. while turtle.detectUp() == false do
  10.     checkFuel()
  11.     turtle.up()
  12. end
  13.  
  14. while turtle.detectUp() == true do
  15.     checkFuel()
  16.     turtle.digUp()
  17.     turtle.forward()
  18. end
  19.  
  20. while turtle.detectDown() == false do
  21.     checkFuel()
  22.     turtle.down()
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement