Advertisement
Guest User

farm

a guest
Nov 14th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. while true do
  2.  turtle.forward()
  3.  local success, data = turtle.inspectDown()
  4.  if data.metadata == 7 then
  5.   turtle.digDown()
  6.   turtle.suckDown()
  7.   turtle.select(2)
  8.  end
  9.  if turtle.detectDown() == false then
  10.   turtle.placeDown()
  11.  end
  12.  if turtle.detect() == true then
  13.   turtle.turnRight()
  14.   turtle.forward()
  15.   if turtle.detect() == true then
  16.    turtle.select(3)
  17.    turtle.drop()
  18.    turtle.select(2)
  19.   end
  20.   turtle.turnRight()
  21.  end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement