Advertisement
Guest User

Bee sorting turtle, fuelless

a guest
Dec 2nd, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.17 KB | None | 0 0
  1. -- bee sorter by purplemonday
  2.  
  3. -- you can use a tool-less turtle
  4. -- turtle doesnt need fuel
  5. -- put the right bee in slot 1
  6. -- bees will be taken from chest infront of turtle
  7. -- right bees will be put in a chest below turtle.
  8. -- wrong bees will be put in a chest above turtle.
  9. -- You can replace "chest" with inventory
  10. -- dont place turtle agaist a fact router cluster, it will go wrong use pipe to isolate the turtle.
  11. -- sortiung rule: if bee stacks with the bee in slot 1 then bee is "good" and will be ejected in chest below
  12. -- aplications: sort bee;s that not quite pure. making it the perfect copy tool :P
  13. -- if above didnt help.. you need 3 chests to make it work! go read it again.
  14.  
  15. while true do
  16.  if turtle.suck(1) == true then
  17.     --try and stack bee's
  18.     for slots = 16 ,2, -1 do
  19.       turtle.select(slots)
  20.       turtle.transferTo(1)
  21.       s1 = turtle.getItemCount(1)
  22.       if s1 > 1 then
  23.         turtle.select(1)
  24.       -- get rid of extra 'right'  bee's
  25.          turtle.dropDown(s1-1)
  26.       end
  27.     end
  28.     -- empty all other slots
  29.     for sl = 2,16,1 do
  30.       turtle.select(sl)
  31.       turtle.dropUp()
  32.     end  
  33.   end
  34.   os.sleep(1)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement