Advertisement
Guest User

diaa

a guest
Jul 30th, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function digDia()
  2.  
  3. turtle.select(16)
  4.  
  5. if turtle.compare() == true then
  6.  
  7. turtle.dig()
  8. turtle.select(16)
  9.  
  10. end
  11.  
  12. else if turtle.compare() == false then
  13.  
  14. turtle.digDown()
  15. turtle.select(16)
  16.  
  17. end
  18.  
  19. end
  20.  
  21. test = true
  22. while test == true do
  23. digDia()
  24.  
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement