idk lol
This commit is contained in:
parent
f8fd2513c8
commit
491112768c
27 changed files with 1095 additions and 3537 deletions
21
computer/23/startup.lua
Normal file
21
computer/23/startup.lua
Normal 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue