So I've been playing around with a mining turtle as alternate to quarry's, and was wondering if there is an easy way to get him to deposit all his items into a chest when his inventory is full.
So I've been playing around with a mining turtle as alternate to quarry's, and was wondering if there is an easy way to get him to deposit all his items into a chest when his inventory is full.
For i = 16,1,-1 do
turtle.select(i)
turtle.drop()
end
A turtle is about 6 times slower than a quarry with default settings/scripts. So no, not even close in terms of speed. However mobility is much higher and you can place 4 turtles down on each side of an ender chest and gor 4x faster. Still slower than a quarry and it becomes about the same mobility. Quarry still wins.Really? I find my mining turtle to be much more effective than my quarry...to the point that my quarry machine never see daylight.
I was talking about player height vs turtle height. Not what your turtle is mining at. Turtles can more efficiently mine, much better than a player. Branch mining is good for PLAYERS, but turtles can mine much faster with better 1 block height methods every 3rd layer. Makes them 3x as fast as normal excavate.First link in OP of that post? Mine does three tall btw -.-
if turtle.getItemCount(16) ~= 0 then
turtle.dig()
turtle.select(1)
turtle.place()
for i = 2,16 do
turtle.select(i)
turtle.drop()
end
turtle.select(1)
turtle.dig()
end
Hm... Right now my Quarry isn't running (no sorting system yet), but when I set it up it was so fast. I was running it on 6 Magmatic Engines and it was the fastest shit ever. I find Quarries a bajillion times better. Turtles are better early game miners, and GREAT for branch mining. Quarrying, not so much. (IMO)Really? I find my mining turtle to be much more effective than my quarry...to the point that my quarry machine never see daylight.
I totally agree, turtles are awesome early game mine machines. I know next to nothing about CC. All I know is that I hate the excavate command.Santa, quarries run at a max 5 (6~ now?) blocks per second, no matter what you plug into them, we are all considering its top speed when I reffer to the fast turtle script. It takes 3 turtles to be faster than a quarry, without having to set up 6 mag engines or a tess. 4 turtles in ones spot are still much easier to setup and go roughly 33% faster with the script I linked to. If you just use the normal excavate yeah, it will be excruciatingly slow. The beauty of the turtles is that you can program them or use other peoples programs to really bring out their potential like that.
Certainly people are free to choose what they like, but math and observation by me of both methods says that 2 turtles is faster than 1 quarry, and is vastly easier to get running esp early in game. If you are still using turtles to do basic things like branch mine, you have no idea my good sir!
Edit: Turtles can also be mobile chunk loaders. XD (updated info)
This topic is several years old, so its content is highly likely not up to date. Some of the participants might not even be around any longer...Does the script you linked work on normal mining turtles, and does it require ender chests?
Sorry Didnt notice, and thanks for the answerThis topic is several years old, so its content is highly likely not up to date. Some of the participants might not even be around any longer...
If you are looking for a mining turtle script, then I suggest this one:
http://www.computercraft.info/forums2/index.php?/topic/7675-advanced-mining-turtle-ore-quarry/
It is very efficient and have been updated over the years to even be able to continue (most of the time) after server restarts/chunk reloads.
And no the Ender Chest is not a requirement, it is merely being used as a means as transporting the items back to base. You will however often need several large chests for the contents depending on size(and depending if you filter out blocks in the script I linked), so some kind of sorting system is recommended. If you don't want to move it every time you move the turtle, then an Ender Chest is recommended.
an easier way than having the turtle go all the way back to a chest to deposit the items is to have each turtle carry it's own ender chest. That way you can program the turtle to go as far away as it wants within loaded chunks and it won't have to keep wasting fuel returning.
will place an ender chest (which you would put in slot 1 of the turtle's inventory) in front of the turtle (breaking the block in front of it if there is one), place all of the turtle's inventory into the chest, then pick it up again. It will only do this if the turtle has an item in slot 16 (which usually means a full inventory)Code:if turtle.getItemCount(16) ~= 0 then turtle.dig() turtle.select(1) turtle.place() for i = 2,16 do turtle.select(i) turtle.drop() end turtle.select(1) turtle.dig() end