wbennet997

farm2

Jun 26th, 2022 (edited)
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. local crops = true
  2. local wait = 2800
  3.  
  4. local function goo()
  5.     for i = 1,12 do
  6.         turtle.digDown()
  7.         turtle.placeDown()
  8.         turtle.forward()
  9.         turtle.placeDown()
  10.     end
  11. end
  12.  
  13. while true do
  14.     sleep(wait)
  15.     goo()
  16.     shell.run("turn","left","2")
  17.     goo()
  18.     turtle.drop()
  19.     shell.run("turn","left","2")
  20. end
Add Comment
Please, Sign In to add comment