Advertisement
Rangicus

xcorAPI v0.01

Sep 7th, 2012
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function getTree()
  2. x = 0
  3. while turtle.detect() do
  4. turtle.dig()
  5. turtle.digUp()
  6. turtle.up()
  7. x = x + 1
  8. end
  9. while turtle.detectDown() == false do
  10. turtle.down()
  11. end
  12. print("The tree was "..x.." blocks high!")
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement