Advertisement
Guest User

crop.lua

a guest
Apr 6th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. while true do
  2.     bool, inspect = turtle.inspect()
  3.     meta = inspect["metadata"]
  4.     print(meta)
  5.     if meta == 7 then
  6.         turtle.select(1)
  7.         turtle.dig()
  8.         turtle.place()
  9.         turtle.dropUp()
  10.         turtle.select(2)
  11.         turtle.dropUp()
  12.     end
  13.     sleep(1)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement