lookAt
Control a player’s view by directing them to look at specific X, Y, and Z coordinates in Minecraft, enhancing navigation and interaction tasks on remote servers.
Instructions
Make the player look in a specific direction or at coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | X coordinate to look at | |
y | Yes | Y coordinate to look at | |
z | Yes | Z coordinate to look at |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"x": {
"description": "X coordinate to look at",
"type": "number"
},
"y": {
"description": "Y coordinate to look at",
"type": "number"
},
"z": {
"description": "Z coordinate to look at",
"type": "number"
}
},
"required": [
"x",
"y",
"z"
],
"type": "object"
}