BillBodkin

manualBridge

Oct 10th, 2021 (edited)
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. while true do
  2.     if turtle.getItemCount() > 1 then
  3.         print("Placing block")
  4.         turtle.placeDown()
  5.         turtle.dig()
  6.         turtle.forward()
  7.     else
  8.         print("Need blocks")
  9.         sleep(1)
  10.     end
  11. end
Add Comment
Please, Sign In to add comment