Advertisement
sanovskiy

Untitled

Jul 28th, 2014
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. function vomit()
  2.     for slotNum=1,16,1 do
  3.         turtle.select(slotNum) 
  4.         turtle.drop()
  5.     end
  6. end
  7.  
  8. while true do
  9.   if turtle.detectDown() then
  10.     turtle.digDown()
  11.   end
  12.   if turtle.detect() then
  13.     vomit()
  14.   end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement