Advertisement
Ubidibity

SimplePlant

Mar 15th, 2015
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. while true do
  2.   if not turtle.detect() then
  3.     turtle.select(1)
  4.     turtle.place()
  5.   else
  6.     turtle.select(2)
  7.     print("Fertilizing")
  8.     for x=1, 10 do
  9.       turtle.place()
  10.     end
  11.   end
  12.   os.sleep(60)
  13.   print("checking")
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement