Advertisement
AKopyl

milker

Mar 15th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. INPUT = 'back'
  2. OUTPUT = 'bottom'
  3.  
  4. while true do
  5.     if turtle.getItemDetail().name == 'minecraft:bucket' then
  6.         while not turtle.place() do
  7.             sleep(5)
  8.         end
  9.     end
  10.     if turtle.getItemDetail().name == 'minecraft:milk_bucket' then
  11.         turtle.dropDown()
  12.         turtle.turnLeft()
  13.         turtle.turnLeft()
  14.         turtle.suck(1)
  15.         turtle.turnLeft()
  16.         turtle.turnLeft()
  17.     end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement