Advertisement
Guest User

test

a guest
May 22nd, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. function Drop() -- u can allways rename this :D/>/>
  2.   for i = 1,16 do
  3.    if turtle.getItemCount(i) > 0 then
  4.         turtle.select(i)
  5.    turtle.dropDown()
  6. --  sleep(2)
  7.   end
  8. end
  9. end
  10.  
  11. while true do
  12.  while rs.getInput("back") do
  13.   Drop()
  14. sleep(4)
  15. end
  16.  
  17.  while not rs.getInput("back") do
  18.   sleep(3)
  19.  end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement