Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. while true do
  2.     local success, data = turtle.inspect()
  3.     if success then
  4.         if data.metadata == 7 then
  5.             turtle.digDown()
  6.             sleep(0.1)
  7.             turtle.select(1)
  8.             turtle.placeDown()
  9.             print("semilla recolectada :)")
  10.         end
  11.     end
  12.     sleep(0.1)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement