Advertisement
xKevinn

Dig to sky then down

Sep 17th, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. while turtle.digUp()==false do
  2.     turtle.up()
  3. end
  4.  
  5. while true do
  6.     turtle.digUp()
  7.     turtle.up()
  8.     if turtle.digUp()==false then
  9.         break
  10.     end
  11. end
  12.  
  13. while turtle.down()==true do
  14.     turtle.down()
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement