Advertisement
Guest User

farm

a guest
Apr 19th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 0
  1. slotBoneMeal = 2
  2. slotCrop = 3
  3.  
  4.  
  5. while true do
  6.  
  7. turtle.select(slotBoneMeal)
  8. if turtle.compareTo(1) == false then
  9.   return false
  10. end
  11.  
  12. if turtle.getItemCount(slotBoneMeal) < 1 then
  13.   return false
  14. end
  15.  
  16. turtle.digDown()
  17.  
  18. turtle.select(slotCrop)
  19. turtle.placeDown(slotCrop)
  20. turtle.forward(
  21. turtle.select(slotBoneMeal)
  22. while turtle.placeDown(slotBoneMeal) do
  23. end
  24.  
  25. turtle.digDown()
  26.  
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement