Advertisement
Schmille

LavaLover

Mar 20th, 2022
810
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. local args = {...}
  2. local length = args[1]
  3.  
  4. for i=1,length,1 do
  5.     turtle.place()
  6.     turtle.refuel()
  7.     turtle.placeDown()
  8.     turtle.refuel()
  9.     turtle.placeUp()
  10.     turtle.refuel()
  11.     if turtle.detect() then
  12.         turtle.dig()
  13.     end
  14.     turtle.forward()
  15. end
  16.  
  17. turtle.turnLeft()
  18. turtle.turnLeft()
  19.  
  20. for i=1,length,1 do
  21.     if turtle.detect() then
  22.         turtle.dig()
  23.     end
  24.     turtle.forward()
  25. end
  26.  
  27. turtle.turnLeft()
  28. turtle.turnLeft()
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement