Mining turtle command question ( solved )

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

heecks

New Member
Jul 29, 2019
79
0
0
Hi, I have a question related to the mining turtle. I want to make a cobblestone farming process with lava / water and piston. I want the mining turtle not moving but just mine the cobblestone pushed by the piston. Is it possible and if yes what is the command to make that ?
 

Guswut

New Member
Jul 29, 2019
2,152
0
0
Hi, I have a question related to the mining turtle. I want to make a cobblestone farming process with lava / water and piston. I want the mining turtle not moving but just mine the cobblestone pushed by the piston. Is it possible and if yes what is the command to make that ?

The command is turtle.dig() to break the block in front of the turtle. It will place the block into its inventory.

Also, a turtle-free (and, sadly, better) way to make a cobblestone generator is using an igneous extruder. It requires a bucket of lava to start, and a constant supply of water (an aqueous accumulator would solve that) to constantly produce cobblestone.
 

Guswut

New Member
Jul 29, 2019
2,152
0
0
turtle.dig() telling me no such program

You are attempting to run an LUA command in the console interface. Type this:

Code:
LUA

To open the LUA interface. From there, type that command, and it should return "true".
 

heecks

New Member
Jul 29, 2019
79
0
0
ok its working but its only do 1 block and I have to re-enter the command ... turtle.dig() Ideally I want the turtle non stop working without moving.
 

Guswut

New Member
Jul 29, 2019
2,152
0
0
ok its working but its only do 1 block and I have to re-enter the command ... turtle.dig()

Yes, because that command is just going to dig the first block in front of it. Because that is the entire idea as to what a cobblestone generator does (removes a cobblestone block).

If you want it to repeat the command, you will need to make a custom script ("exit()" in the LUA command window, then "edit startup"), and then enter something like this:

Code:
while true do
turtle.attack()
sleep(0.1)
end

Then press CTRL and then save it, then close it, and then type "startup".

You may also want to review the turtle programming walkthroughs out on the internet to give you some more data on how LUA programming of turtles works.
 

bodaciousbilly

New Member
Jul 29, 2019
12
0
0
If your end goal is just the cobble farm (not necessarily messing with turtles, there are far easier ways to do it. I did a RP2 block break setup once that worked really well. But even easier is the igneous extruder from TE.
 

Guswut

New Member
Jul 29, 2019
2,152
0
0
If your end goal is just the cobble farm (not necessarily messing with turtles, there are far easier ways to do it. I did a RP2 block break setup once that worked really well. But even easier is the igneous extruder from TE.

Already mentioned the extruder. It does not appear that he wants to go about it that way. So it goes, eh?
 

heecks

New Member
Jul 29, 2019
79
0
0
The post maybe old by now but...I found my solution by hazard when browsing the ftb mindcrack items in game. The block breaker. Instead of using a turtle I use that to break the cobblestone automated with a timer.

2013-03-29_214220_zpsd262af5c.png
 

SkyBoy96

New Member
Jul 29, 2019
100
0
0
Build the thing I attached the recipe for. Right click on it with a bucket or other such container of lava. Then right click on it with a bucket or container of water. Ensure there is no red stone signal being applied to it. Attach a pipe to one of the sides with the orange ring on it, and attach the pipe to a chest. You now have a cobble generator.
 

Attachments

  • image.jpg
    image.jpg
    12.3 KB · Views: 102

heecks

New Member
Jul 29, 2019
79
0
0
I have already the igneous extruder...I prefert to use lava from the nether to generate power than wasting it to make cobblestone. My system is a infinite lava source and dont waste lava. Basically its 2 block of lava and infinite. Water + lava = cobblestone pushed by piston then block breaker.
 

Bickers

New Member
Jul 29, 2019
777
0
0
I have already the igneous extruder...I prefert to use lava from the nether to generate power than wasting it to make cobblestone. My system is a infinite lava source and dont waste lava. Basically its 2 block of lava and infinite. Water + lava = cobblestone pushed by piston then block breaker.
cobble is free in the extruder only stone and obsidian uses lava/water just put a bucket of water and lava in and it makes cobble and never uses lava
 

Harvest88

New Member
Jul 29, 2019
1,365
-1
0
cobble is free in the extruder only stone and obsidian uses lava/water just put a bucket of water and lava in and it makes cobble and never uses lava
and way less lag even if you have more going for their quite slow 2 second per cobble, combine that with AE then you got no worry for overflows. Cause even RP2 tubes can clog up and cause major lag.