Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 4 endstone in a plus sign with a regular turtle in the middle
- -- no fuel required.
- -- shell.run("endfarm")
- -- pastebin get 7hVGkEjF endfarm
- function smack()
- turtle.dig()
- turtle.place(1)
- end
- function ender()
- block,data = turtle.inspect()
- if data.name ~= "ExtraUtilities:plant/ender_lilly" then
- smack()
- end
- if data.metadata > 6 then
- smack()
- end
- turtle.turnRight()
- end
- while true do
- ender()
- sleep(120)
- end
Advertisement
Add Comment
Please, Sign In to add comment