Advertisement
pierre53000

Crafting turtle

Nov 28th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function craft()
  2. turtle.craft(1)
  3. end
  4.  
  5. function getwheat()
  6. turtle.suckDown(10)
  7. end
  8.  
  9.  
  10. function drop()
  11. turtle.select(2)
  12. turtle.dropUp(2)
  13. turtle.select(1)
  14. end
  15.  
  16.  
  17. function finish()
  18. turtle.select(1)
  19. turtle.dropUp(1)
  20. end
  21.  
  22.  
  23. while (true) do
  24. craft()
  25. drop()
  26. if(turtle.getItemCount(1) <= 10) then
  27. getwheat()
  28. end
  29.  
  30. if(turtle.getItemCount(1) <= 1) then
  31. finish()
  32. end
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement