Advertisement
Guest User

startup

a guest
Jan 20th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. while true do
  2.   local ok, block = turtle.inspectDown()
  3.   if block["metadata"] == 7 then
  4.     turtle.digDown()
  5.     turtle.select(2)
  6.     turtle.placeDown()
  7.     turtle.dropUp()
  8.     turtle.select(1)
  9.     turtle.dropUp()
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement