MCPMC (Minecraft MCP)
by gerred
dig_area_relative
Dig multiple blocks in an area relative to the bot's current position. Coordinates use the same relative system as dig_block_relative. Use this for clearing spaces.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | Yes | ||
start | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end": {
"$ref": "#/properties/start"
},
"start": {
"additionalProperties": false,
"properties": {
"dx": {
"type": "number"
},
"dy": {
"type": "number"
},
"dz": {
"type": "number"
}
},
"required": [
"dx",
"dy",
"dz"
],
"type": "object"
}
},
"required": [
"start",
"end"
],
"type": "object"
}