trainworld_computercraft/computer/3/clear.lua
2025-05-22 20:51:25 +02:00

8 lines
151 B
Lua

pf = require("pathfinding")
chest = vector.new(-251,96,99)
pf.to(chest)
for i = 1,16 do
turtle.select(i)
turtle.dropDown()
end
pf.returnHome()