Advertisement
Guest User

nethertunnel.lua

a guest
Dec 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. function refill_blocks()
  2.     turtle.select(16)
  3.     turtle.place()
  4.    
  5.     for i=1,14 do
  6.         if turtle.getItemCount(i) == 0 then
  7.             turtle.select(i)
  8.             turtle.suck()
  9.         end
  10.     end
  11.     turtle.select(16)
  12.     turtle.dig()
  13. end
  14.  
  15. refill_blocks()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement