Advertisement
bueddl

Untitled

Jun 10th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1.     for j = 5,16 do
  2.         turtle.select(j)
  3.        
  4.         local dropItem = true
  5.         for i = 1,4 do
  6.            
  7.             -- compare to  good
  8.             if turtle.compareTo(j) then
  9.                 -- drop all trash
  10.                
  11.                 dropItem = false
  12.             end
  13.        
  14.         end
  15.        
  16.         if dropItem then
  17.             turtle.dropDown()
  18.         end
  19.    
  20.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement