TheSommer

Wheat

Feb 10th, 2013
7,822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.71 KB | None | 0 0
  1. --[[
  2.     Author
  3.         Rasmus Sommer aka. TheSommer
  4.         youtube.com/thesommersmc
  5.         twitch.tv/thesommer
  6.    
  7.     How to use:
  8.         Slot 1 - Seeds/Potatos/Carrots etc.
  9.         Slot 2 - Bonemeal
  10.    
  11.         wheat
  12. --]]
  13.  
  14. while true do
  15.     turtle.select(1)
  16.     turtle.place()
  17.     turtle.select(2)
  18.     turtle.place()
  19.     if turtle.getItemCount(2) == 0 then
  20.         turtle.turnRight()
  21.         if turtle.suck() == false then
  22.             print("No Bonemeal available!")
  23.             turtle.turnLeft()
  24.             return
  25.         end
  26.         turtle.turnLeft()
  27.     end
  28.     turtle.select(1)
  29.     turtle.dig()
  30.     turtle.select(3)
  31.     turtle.dropDown()
  32.     turtle.select(4)
  33.     turtle.dropDown()
  34. end
Advertisement
Add Comment
Please, Sign In to add comment