TheSommer

New Farm (1.5.2)

Aug 28th, 2013
3,059
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. function dropLoot()
  2.     turtle.select(3)
  3.     turtle.dropDown()
  4.     turtle.select(4)
  5.     turtle.dropDown()
  6. end
  7.  
  8. function getMeal()
  9.     turtle.turnRight()
  10.     turtle.suck()
  11.     turtle.turnLeft()
  12. end
  13.  
  14. while (true) do
  15.     turtle.select(1)
  16.     turtle.place()
  17.     turtle.select(2)
  18.     if(turtle.place()) then
  19.         while (turtle.getItemCount(2) == 0) do
  20.             getMeal()
  21.         end
  22.     else
  23.     if(turtle.getItemCount(2) == 0) then
  24.         getMeal()
  25.     else
  26.         turtle.select(1)
  27.             turtle.dig()
  28.             dropLoot()
  29.     end
  30.     end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment