ToLazyToThink

pickup loop

May 5th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.14 KB | None | 0 0
  1. while true do
  2.   turtle.dropUp()
  3.   if turtle.getItemCount(1) == 0 then
  4.     turtle.digDown()
  5.   else
  6.     sleep(30)
  7.   end
  8.   sleep(1)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment