Guest User

tree

a guest
May 12th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. --[[
  2. Tree Program
  3. ver 1
  4. by: Raxmo
  5. --]]
  6.  
  7. turtle.dig() --grab the first block
  8. turtle.forward() --go forward
  9.  
  10. while turtle.detectUp() do --as long as there is something above me
  11.   turtle.digUp()           --dig what's up there
  12.   turtle.up()              --and go up to continue
  13. end
  14.  
  15. while turtle.down() do --cleaver little way of returning a turtle back to the ground
  16. end
Advertisement
Add Comment
Please, Sign In to add comment