Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. size = 0
  2.  
  3. turtle.refuel()
  4. print("Refueled turtle!")
  5.  
  6. function digPlanting()
  7.   turtle.turnLeft()
  8.   turtle.dig()
  9.   turtle.turnRight()
  10.   turtle.turnRight()
  11.   turtle.dig()
  12.   turtle.turnLeft()
  13. end
  14.  
  15. function back()
  16.   turtle.turnRight()
  17.   turtle.turnRight()
  18.   count = 0
  19.   while count < 16 do
  20.    turtle.forward()
  21.    count = count + 1
  22.   end
  23. end
  24.  
  25. while size < 16 do
  26.   turtle.forward()
  27.   digPlanting()
  28.   size = size + 1
  29. end
  30.  
  31. if size == 16 then
  32.   back()
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement