jonassvensson4

Golv test 1

Sep 19th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local args = { ... }
  2. local dist = tonumber(args[1])
  3. for i=1,dist,1 do
  4.     turtle.digDown()
  5.     turtle.placeDown()
  6.     turtle.turnLeft()
  7.     turtle.forward()
  8.     turtle.digDown()
  9.     turtle.placeDown()
  10.     turtle.back()
  11.     turtle.back()
  12.     turtle.digDown()
  13.     turtle.placeDown()
  14.     turtle.forward()
  15.     turtle.turnRight()
  16.     turtle.forward()
  17. end
  18.  
  19. for i=1,dist do
  20.         turtle.back()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment