Advertisement
LeviathanV

dough maker

Feb 13th, 2021 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. while true do
  2.  
  3. local function drop()
  4. for i = 3, 16 do
  5. turtle.select(i)
  6. turtle.dropUp()
  7. end
  8. end
  9.  
  10. local function doughcraft(num)
  11. for i = 1,num do
  12. turtle.select(3)
  13. turtle.placeUp()
  14. turtle.select(2)
  15. turtle.placeDown()
  16. turtle.craft()
  17. end
  18. end
  19.  
  20. local function run()
  21. turtle.select(1)
  22. turtle.suck()
  23. if turtle.getItemCount(1) > 3 then
  24. doughcraft(turtle.getItemCount(1)-2)
  25. drop()
  26. end
  27. end
  28.  
  29. run()
  30. sleep(1)
  31. end
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement