6 posts
Posted 06 December 2019 - 12:44 PM
Hi,
I want my turtle to suck items from a chest.
Is there a way to manage this ?
Thanx !
1426 posts
Location
Does anyone put something serious here?
Posted 06 December 2019 - 02:54 PM
turtle.suck should do it.
6 posts
Posted 06 December 2019 - 09:14 PM
turtle.suck should do it.
Thx for your fast answer:
That does not work if my turtle has 1 item as spaceholder in each slot.
this is my turtle preset:
This my chet:
This is what I tried:
function suckAllItemsForV18()
u = 1
while u < 17 do
turtle.select(u)
t = 1
while t < 17 do
turtle.suck()
t = t + 1
end
u = u + 1
end
end
suckAllItemsForV18()
more readable:
Edited on 06 December 2019 - 08:44 PM
8543 posts
Posted 15 December 2019 - 10:52 PM
Moved to Ask a Pro.