Difference between revisions of "Excavate"

From ComputerCraft Wiki
Jump to: navigation, search
(Created page with "{{Stub|Needs more info about the program itself, perhaps listing the code?}} Excavate is a built in program for turtles that will mine out a speci...")
 
(Added more info)
Line 1: Line 1:
 
{{Stub|Needs more info about the program itself, perhaps listing the code?}}
 
{{Stub|Needs more info about the program itself, perhaps listing the code?}}
Excavate is a [[Built In Turtle Programs|built in program for turtles]] that will mine out a specified width square of blocks, all the way down to bedrock level, periodically returning to the surface when full and dropping off supplies either into a supplied chest with empty slots, or onto the ground if none is available.
+
Excavate is a [[Built In Turtle Programs|built in program for turtles]] that will mine out a specified width square of blocks, all the way down to bedrock level.
 +
 
 +
It will periodically return to the surface when it is full and drops off mined materials either into an available inventory placed behind it when it starts, or onto the ground. If fuel requirements are enabled, it will also periodically return to the starting point if it requires additional fuel.
 +
 
 
{{Example
 
{{Example
 
|desc=Mines a 16x16 wide hole down to bedrock
 
|desc=Mines a 16x16 wide hole down to bedrock
 
|code=excavate 16
 
|code=excavate 16
 
}}
 
}}

Revision as of 17:10, 16 April 2014

This page is a stub.
Please help us by expanding it.

Excavate is a built in program for turtles that will mine out a specified width square of blocks, all the way down to bedrock level.

It will periodically return to the surface when it is full and drops off mined materials either into an available inventory placed behind it when it starts, or onto the ground. If fuel requirements are enabled, it will also periodically return to the starting point if it requires additional fuel.


Grid paper.png  Example
Mines a 16x16 wide hole down to bedrock
Code
excavate 16