Guest User

nether_mine.lua

a guest
Jun 7th, 2026
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. local function sideblocks()
  2.     turtle.turnLeft()
  3.     turtle.place()
  4.     turtle.turnRight()
  5.     turtle.turnRight()
  6.     turtle.place()
  7.     turtle.turnLeft()
  8. end
  9. while true do
  10.     turtle.placeDown()
  11.     sideblocks()
  12.     turtle.dig()
  13.     turtle.digUp()
  14.     turtle.up()
  15.     turtle.placeUp()
  16.     sideblocks()
  17.     turtle.dig()
  18.     turtle.forward()
  19.     turtle.placeUp()
  20.     sideblocks()
  21.     turtle.down()
  22. end
  23.  
Advertisement
Add Comment
Please, Sign In to add comment