system
Manage in-game elements like scoreboards, screen displays, and player interfaces in Minecraft Bedrock. Organize objectives, display titles, action bars, and sequences to enhance gameplay and server interactions.
Instructions
System features: scoreboards, screen displays (titles, action bars), player UI, game management
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform within the category | |
category | Yes | System category to use | |
display_name | No | Display name for objective | |
display_slot | No | Display slot for scoreboard | |
fade_in | No | Fade in duration in ticks (default: 10) | |
fade_out | No | Fade out duration in ticks (default: 20) | |
message | No | Action bar message | |
objective_id | No | Scoreboard objective ID | |
player_name | No | Target player name (optional, defaults to local player) | |
score | No | Score value | |
sort_order | No | Sort order for scoreboard | |
stay | No | Stay duration in ticks (default: 70) | |
steps | No | Array of system actions for sequence. Each step should have "category" and "action" fields and relevant parameters. | |
subtitle | No | Subtitle text | |
title | No | Title text |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform within the category",
"type": "string"
},
"category": {
"description": "System category to use",
"enum": [
"scoreboard",
"screen",
"sequence"
],
"type": "string"
},
"display_name": {
"description": "Display name for objective",
"type": "string"
},
"display_slot": {
"description": "Display slot for scoreboard",
"enum": [
"sidebar",
"list",
"belowname"
],
"type": "string"
},
"fade_in": {
"default": 10,
"description": "Fade in duration in ticks (default: 10)",
"type": "number"
},
"fade_out": {
"default": 20,
"description": "Fade out duration in ticks (default: 20)",
"type": "number"
},
"message": {
"description": "Action bar message",
"type": "string"
},
"objective_id": {
"description": "Scoreboard objective ID",
"type": "string"
},
"player_name": {
"description": "Target player name (optional, defaults to local player)",
"type": "string"
},
"score": {
"description": "Score value",
"type": "number"
},
"sort_order": {
"description": "Sort order for scoreboard",
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"stay": {
"default": 70,
"description": "Stay duration in ticks (default: 70)",
"type": "number"
},
"steps": {
"description": "Array of system actions for sequence. Each step should have \"category\" and \"action\" fields and relevant parameters.",
"type": "array"
},
"subtitle": {
"description": "Subtitle text",
"type": "string"
},
"title": {
"description": "Title text",
"type": "string"
}
},
"required": [
"category",
"action"
],
"type": "object"
}