BioPrince

spiral stairs down

Jun 12th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- pastebin get 4C3DmtrV down
  2. local arg = {...}
  3.  
  4. function step()
  5.   turtle.digDown()
  6.   turtle.digUp()
  7.   turtle.down()
  8.   turtle.dig()
  9.   turtle.forward()
  10.   checkAndPlace()
  11.   turtle.digDown()
  12.   turtle.digUp()
  13.   turtle.down()
  14.   turtle.dig()
  15.   turtle.forward()
  16.   checkAndPlace()
  17.   turtle.digUp()
  18.   turtle.turnLeft()
  19. end
  20.  
  21. function checkAndPlace()
  22.   if(not turtle.detectDown()) then
  23.     turtle.placeDown()
  24.   end
  25. end
  26.  
  27. for  i = 1, tonumber(arg[1]) do
  28.   step()
  29. end
Add Comment
Please, Sign In to add comment