richie3366

turtle extraction enderchest

Jan 14th, 2013
1,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. while true do
  2.   turtle.select(1)
  3.   for i = 1,9 do
  4.     turtle.suckUp() -- aspiration de 9 stacks en haut
  5.   end
  6.  
  7.   for i = 1,9 do -- drop des 9 stacks en bas
  8.     turtle.select(i) -- selection du slot numero "i"
  9.     turtle.dropDown()
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment