Advertisement
mike229876

Untitled

Mar 10th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. x = 0
  2. while true do
  3. if x < 90 then
  4. turtle.digUp()
  5. turtle.up()
  6. x = x + 1
  7. end
  8. if x == 90 then
  9. turtle.forward()
  10. end
  11. if x > 90 and x < 180 then
  12. turtle.digDown()
  13. turtle.down()
  14. x = x + 1
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement