{"id":27022,"date":"2026-06-01T13:13:58","date_gmt":"2026-06-01T10:13:58","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/"},"modified":"2026-06-01T13:13:58","modified_gmt":"2026-06-01T10:13:58","slug":"bedrockdialog","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/","title":{"rendered":"BedrockDialog"},"content":{"rendered":"<p># BedrockDialog<\/p>\n<p>A Paper plugin library that lets you show interactive dialogs to players on both Java Edition and Bedrock Edition (via Geyser\/Floodgate) through a single unified API.<\/p>\n<p>Intended to be used as a **dependency library** by other plugins. The bundled `\/bdialog` command and `config.yml` dialog definitions are provided as a demo and for simple use cases only.<\/p>\n<p>## Requirements<\/p>\n<p>&#8211; Paper 1.21.8+<br \/>\n&#8211; Java 21+<br \/>\n&#8211; Geyser and\/or Floodgate (optional, for Bedrock Edition support)<\/p>\n<p>## API Usage<\/p>\n<p>See [API.md]([API.md](https:\/\/github.com\/f0reachARR\/BedrockDialog\/blob\/main\/API.md)) for details on using BedrockDialog as a library in your own plugin.<\/p>\n<p>## Demo \/ Standalone Usage<\/p>\n<p>The plugin ships with a built-in command and `config.yml` for testing dialogs without writing code. This is intended for demonstration and simple use cases.<\/p>\n<p>### Commands<\/p>\n<p>| Command               | Description                       | Permission                      |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;|<br \/>\n| `\/bdialog open <id>`  | Open a dialog defined in config   | `bedrockdialog.dialog.open`     |<br \/>\n| `\/bdialog reload`     | Reload `config.yml`               | `bedrockdialog.dialog.reload`   |<\/p>\n<p>Both permissions default to **OP only**.<\/p>\n<p>### config.yml Example<\/p>\n<p>&#8220;`yaml<br \/>\ndialogs:<br \/>\n  welcome:<br \/>\n    type: multi_button<br \/>\n    title: &#8220;Welcome!&#8221;<br \/>\n    body: &#8220;Welcome, <player>!&#8221;<br \/>\n    buttons:<br \/>\n      &#8211; label: &#8220;Go to Spawn&#8221;<br \/>\n        actions:<br \/>\n          &#8211; type: run_as_player<br \/>\n            command: &#8220;spawn&#8221;<br \/>\n      &#8211; label: &#8220;Check Rules&#8221;<br \/>\n        actions:<br \/>\n          &#8211; type: open_dialog<br \/>\n            dialog_id: &#8220;notice_rules&#8221;<br \/>\n      &#8211; label: &#8220;Close&#8221;<br \/>\n        actions: []<\/p>\n<p>  confirm_pvp:<br \/>\n    type: confirm<br \/>\n    title: &#8220;Join PVP?&#8221;<br \/>\n    body: &#8220;<player>, do you want to join PVP?&#8221;<br \/>\n    yes_label: &#8220;Join&#8221;<br \/>\n    no_label: &#8220;Cancel&#8221;<br \/>\n    on_yes:<br \/>\n      &#8211; type: run_as_console<br \/>\n        command: &#8220;pvp join {player}&#8221;<br \/>\n    on_no: []<\/p>\n<p>  notice_rules:<br \/>\n    type: notice<br \/>\n    title: &#8220;Server Rules&#8221;<br \/>\n    body: &#8220;1. No griefingn2. No cheatingn3. Have fun!&#8221;<br \/>\n    dismiss_label: &#8220;Got it&#8221;<br \/>\n    on_dismiss: []<\/p>\n<p>  item_form:<br \/>\n    type: input<br \/>\n    title: &#8220;Item Distribution Form&#8221;<br \/>\n    body: &#8220;Select what you want to receive&#8221;<br \/>\n    submit_label: &#8220;Submit&#8221;<br \/>\n    inputs:<br \/>\n      &#8211; type: text<br \/>\n        key: player_name<br \/>\n        label: &#8220;Target Player Name&#8221;<br \/>\n        placeholder: &#8220;e.g. Steve&#8221;<br \/>\n        default: &#8220;&#8221;<br \/>\n      &#8211; type: slider<br \/>\n        key: amount<br \/>\n        label: &#8220;Amount&#8221;<br \/>\n        min: 1<br \/>\n        max: 64<br \/>\n        step: 1<br \/>\n        default: 1<br \/>\n      &#8211; type: boolean<br \/>\n        key: checkbox<br \/>\n        label: &#8220;Checkbox Test&#8221;<br \/>\n        default: true<br \/>\n      &#8211; type: dropdown<br \/>\n        key: item<br \/>\n        label: &#8220;Item&#8221;<br \/>\n        default: 0<br \/>\n        options:<br \/>\n          &#8211; id: diamond<br \/>\n            label: &#8220;Diamond&#8221;<br \/>\n          &#8211; id: gold_ingot<br \/>\n            label: &#8220;Gold Ingot&#8221;<br \/>\n    on_submit:<br \/>\n      &#8211; type: run_as_console<br \/>\n        command: &#8220;give {input.player_name} {input.item} {input.amount}&#8221;<br \/>\n    on_close: []<br \/>\n&#8220;`<\/p>\n<p>### Config Actions<\/p>\n<p>| Type            | Description                          | Fields      |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;-|<br \/>\n| `run_as_player` | Execute a command as the player      | `command`   |<br \/>\n| `run_as_console`| Execute a command as the console     | `command`   |<br \/>\n| `open_dialog`   | Open another dialog by config ID     | `dialog_id` |<\/p>\n<p>**Placeholders**: `{player}` (player name), `{input.<key>}` (input field value, available in `on_submit`)<\/p>\n<p>## License<\/p>\n<p>MIT License. See [LICENSE](LICENSE) for details.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>BedrockDialog is a Dialog wrapper for both Paper 1.21.8+ and Geyser (or Floodgate)<\/p>\n","protected":false},"featured_media":0,"template":"","meta":{"_minecraft_slug":"bedrockdialog","_minecraft_project_id":"9UKGJdgG","_minecraft_author":"f0reachARR","_minecraft_license":"MIT","_minecraft_downloads":38,"_minecraft_follows":0,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"bedrockdialog.zip","_minecraft_size_bytes":64223,"_minecraft_version_count":1,"_minecraft_updated_at":"2026-05-15T21:40:27.879405Z","_minecraft_date_created":"2026-03-04T23:32:45.990879Z","_minecraft_date_modified":"2026-03-03T03:58:38.431240Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/bedrockdialog","_minecraft_icon_attachment_id":0,"_minecraft_imported_at":"2026-06-01T10:13:59+00:00","_minecraft_import_hash":"54414ba48576cb967952d360bde7744f","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[873,127,128,92],"mod_loader":[132,133],"minecraft_version":[40,41,81,82],"class_list":["post-27022","mod","type-mod","status-publish","hentry","mod_category-library","mod_category-paper","mod_category-purpur","mod_category-utility","mod_loader-paper","mod_loader-purpur","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>BedrockDialog - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BedrockDialog - Minecraft\" \/>\n<meta property=\"og:description\" content=\"BedrockDialog is a Dialog wrapper for both Paper 1.21.8+ and Geyser (or Floodgate)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bedrockdialog\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bedrockdialog\\\/\",\"name\":\"BedrockDialog - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"datePublished\":\"2026-06-01T10:13:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bedrockdialog\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bedrockdialog\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/bedrockdialog\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"BedrockDialog\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"BedrockDialog - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/","og_locale":"en_US","og_type":"article","og_title":"BedrockDialog - Minecraft","og_description":"BedrockDialog is a Dialog wrapper for both Paper 1.21.8+ and Geyser (or Floodgate)","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/","name":"BedrockDialog - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"datePublished":"2026-06-01T10:13:58+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/bedrockdialog\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"BedrockDialog"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/27022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=27022"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=27022"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=27022"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=27022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}