minecraft-computercraft-lua.../monsterfarm.lua

8 lines
124 B
Lua
Raw Normal View History

2023-12-10 17:37:54 +01:00
while true do
turtle.attack()
sleep(0.1)
for i=1, 16, 1 do
turtle.select(i)
turtle.dropDown()
end
end