Advertisement
Serious07

Turtle Путь к Алмазам на дно

Aug 11th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. --Down by Serious07--
  2. --Just make way down--
  3.  
  4. local i = 0 -- #For i
  5. local j = 0 -- #For j
  6. local a = 0 -- #Number of segments
  7.  
  8. textutils.slowWrite("DoWayDown by Serious07\n")
  9. sleep(1)
  10. textutils.slowWrite("Print number of segments:\n")
  11. a = tonumber(read())
  12.  
  13. while i<a do
  14. while j<4 do
  15. turtle.digUp()
  16. turtle.digDown()
  17. turtle.down()
  18.  
  19. turtle.dig()
  20. turtle.forward()
  21.  
  22. j = j + 1
  23. end
  24.  
  25. turtle.select(16)
  26. turtle.turnRight()
  27. turtle.dig()
  28. turtle.place()
  29. turtle.turnLeft()
  30.  
  31. turtle.turnLeft()
  32. i = i + 1
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement