My dialogs are not appearing in the /dialog command, and I have no clue why.
{
"type": "minecraft:notice",
"title": {"text": "Create Marker", "color": "gold"},
"body": [
{
"type": "minecraft:plain_message",
"contents": {
"text": "Enter the lore text that will be displayed when players interact with this marker.",
"color": "#e2386e"
}
}
],
"inputs": [
{
"type": "minecraft:text",
"key": "lore_text",
"label": {"text": "Tooltip Text"},
"width": 300,
"initial": "{\"text\":\"Your lore here\",\"color\":\"aqua\"}",
"multiline": {
"max_lines": 5,
"height": 100
}
}
],
"can_close_with_escape": true,
"pause": false,
"action": {
"label": {"text": "Create Marker", "color": "green"},
"action": {
"type": "dynamic/run_command",
"template": "function lore_markers:_create_with_text {lore_text:\"$(lore_text)\"}"
}
}
}