Advertisement
herobrinethree

minerpro

Jul 11th, 2022
991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. refill = function()
  2.     if turtle.getFuelLevel() <50 then
  3.         turtle.select(1)
  4.         sleep(3)
  5.         repeat
  6.             turtle.digUp()
  7.         until turtle.detect() == false
  8.         turtle.placeUp()
  9.         turtle.suckUp()
  10.         turtle.refuel()
  11.         turtle.dropUp()
  12.         turtle.digUp()
  13.     end
  14. end
  15.  
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement