Guest User

CCraft Turtle Platform

a guest
Nov 20th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. lua
  2. =
  3. print("How many times?")
  4. a=tonumber(read())
  5. x=1
  6. while x<=a do
  7. turtle.digDown()
  8. turtle.placeDown()
  9. turtle.turnRight()
  10. turtle.forward()
  11. turtle.digDown()
  12. turtle.placeDown()
  13. turtle.forward()
  14. turtle.digDown()
  15. turtle.placeDown()
  16. turtle.turnLeft()
  17. turtle.forward()
  18. turtle.turnLeft()
  19. turtle.forward()
  20. turtle.forward()
  21. turtle.turnRight()
  22. x=x+1
  23. end
  24. if x>=a then
  25. turtle.turnRight()
  26. turtle.turnRight()
  27. turtle.forward(a)
  28. end
Advertisement
Add Comment
Please, Sign In to add comment