#No Dialogs are appearing at all

1 messages · Page 1 of 1 (latest)

fluid fractal
#

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)\"}"
    }
  }
}
hot citrus
#

Dialogs are an experimental feature, meaning they do not update with /reload. They need a full world restart. If you've added it to a world while it's running, that could be why. If you're on single player, try relogging. If you're on a server, you'll need to restart it

fluid fractal
#

Ah thanks! Thats very helpful information to know.