Advertisement
Muzze77

Tekkit_Lite_Crafty_Turtle_V2.0 by Muzze77

Feb 3rd, 2015
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. -- This was original created by Muzze77 --
  2. shell.run("clear")
  3. Dropside = "front"
  4. SuckSide = "bottom"
  5. StoreSide = "top"
  6.  
  7.  
  8. function sort(slot)
  9. turtle.select(slot)
  10. turtle.dropUp()
  11. end
  12.  
  13.  
  14.  
  15. while true do
  16.   num = 16
  17.    while num ~= 1 do
  18.    sort(num)
  19.    
  20.      
  21.    num = num - 1  
  22.     end
  23.     function sel(selc)
  24.     turtle.select(selc)
  25.     turtle.suckDown()
  26.     an = turtle.getItemCount(selc)
  27.     ab = an - 1
  28.     turtle.dropDown(ab)
  29.     end
  30.    
  31.        
  32.             sel(2)
  33.             sel(5)
  34.             turtle.select(16)
  35.             turtle.craft()
  36.             turtle.drop()
  37.              
  38.      
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement