Advertisement
Faited

Water Bucket Machine

Sep 7th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. magic = peripheral.wrap("left")
  2. while true do
  3.     turtle.placeDown()
  4.     sleep(5)
  5.     magic.useOnBlock()
  6.     turtle.turnRight()
  7.     a,b = turtle.inspect()
  8.     print(b.name)
  9.     if b.name == "minecraft:acacia_log"
  10.     then
  11.         print("woo it's working")
  12.     else
  13.         turtle.dig()
  14.         turtle.select(4)
  15.         turtle.place()
  16.         turtle.select(1)
  17.     end
  18.     turtle.turnLeft()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement