Advertisement
RyuuzakiJulio

GOGET

Jan 8th, 2013
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. args = {...}
  2.  
  3. max = 1
  4.  
  5. if tonumber(args[1]) ~= nil
  6. max = tonumber(args[1])
  7. end
  8.  
  9. while not turtle.detectUp() do
  10. turtle.up()
  11. end
  12.  
  13. turtle.digUp()
  14.  
  15. for j = i,max do
  16. turtle.up()
  17. for i=1,3 do
  18. turtle.turnRight()
  19. turtle.dig()
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement