followEntity
Track and follow a specific entity in Minecraft by its ID, maintaining a desired distance. Ideal for AI-controlled players on remote servers.
Instructions
Follow a specific entity
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distance | No | Distance to maintain while following | |
entityId | Yes | ID of the entity to follow |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"distance": {
"default": 2,
"description": "Distance to maintain while following",
"type": "number"
},
"entityId": {
"description": "ID of the entity to follow",
"type": "number"
}
},
"required": [
"entityId"
],
"type": "object"
}