This commit is contained in:
Crispy 2025-06-22 00:08:46 +02:00
parent f8fd2513c8
commit 491112768c
27 changed files with 1095 additions and 3537 deletions

21
computer/23/startup.lua Normal file
View file

@ -0,0 +1,21 @@
dropoff = peripheral.wrap("top")
while true do
item = dropoff.getItemDetail(1)
if item and item.count > 32 then
repeat
item = dropoff.getItemDetail(1)
until not item or (item.count < 10)
end
bonemeal = turtle.getItemCount(1)
turtle.select(1)
for i = 2,bonemeal do
turtle.place()
end
while turtle.suck() do end
for i = 2,16 do
turtle.select(i)
turtle.dropUp(turtle.getItemCount()-1)
end
end