Ubidibity

Dropcol.lua

Jun 29th, 2025 (edited)
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | Gaming | 0 0
  1. for y=1,2 do
  2.   turtle.select(y)
  3.   for x=1,63 do
  4.     turtle.digDown()
  5.     turtle.place()
  6.     turtle.down()
  7.   end
  8.   turtle.turnRight()
  9.   turtle.placeDown()
  10.   turtle.select(y+2) -- slots 1,3 then 2,4 should form a lava free column down 64 blocks
  11.   for x=1,64 do
  12.     turtle.place()
  13.     turtle.up()
  14.   end
  15.   turtle.turnRight()
  16. end
Add Comment
Please, Sign In to add comment