Posted 06 April 2013 - 12:04 PM
So, I am trying to set up a very simple melee turtle witch grinder.
I have 8 melee turtles with relays underneath them.
This is working, but it only drops the first item, and the witches drop items faster than that and the turtles quickly overflow.
I've messed with it a bit and can't figure out how to get the turtles to drop all of the items in their inventory.
Really new at this. I apologize if this board is for more complex issues, I figured I would ask here and get the most efficient way of doing things, rather than spend hours trying to find the proper commands.
I have 8 melee turtles with relays underneath them.
while true do
turtle.attack()
sleep(.1)
turtle.suck()
turtle.dropDown()
end
This is working, but it only drops the first item, and the witches drop items faster than that and the turtles quickly overflow.
I've messed with it a bit and can't figure out how to get the turtles to drop all of the items in their inventory.
Really new at this. I apologize if this board is for more complex issues, I figured I would ask here and get the most efficient way of doing things, rather than spend hours trying to find the proper commands.