augustclear

Recycle

May 24th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.35 KB | None | 0 0
  1. local function suck()
  2.     repeat
  3.     os.sleep(.5)
  4.     until turtle.suckUp(1)
  5. end
  6.  
  7. local function fillCraft()
  8.   for i=1,3 do
  9.     turtle.select(i)
  10.     suck()
  11.   end
  12.   for i=5,7 do
  13.     turtle.select(i)
  14.     suck()
  15.   end
  16.   for i=9,11 do
  17.     turtle.select(i)
  18.     suck()
  19.   end
  20. end
  21.  
  22. while true do
  23.   fillCraft()
  24.   turtle.craft()
  25.   turtle.dropDown()
  26. end
Advertisement
Add Comment
Please, Sign In to add comment