fancydialogs: Remove old dialog examples

This commit is contained in:
Oliver
2025-06-23 22:36:55 +02:00
parent 27c30c3494
commit e64a1e5ced
4 changed files with 0 additions and 151 deletions

View File

@@ -1,42 +0,0 @@
{
"type": "dialog_list",
"title": "Dialog List Dialog",
"body": [
{
"type": "plain_message",
"contents": "Welcome to the server! Please read the rules carefully.",
"width": 200
},
{
"type": "plain_message",
"contents": "The rules are: blah blah blah.",
"width": 400
}
],
"dialogs": [
{
"type": "notice",
"title": "Rules",
"external_title": "Go to rules dialog",
"body": [
{
"type": "plain_message",
"contents": "Some important information 1.",
"width": 200
}
]
},
{
"type": "notice",
"title": "Notice Dialog 2",
"external_title": "Go to dialog 2",
"body": [
{
"type": "plain_message",
"contents": "ome important information 2.",
"width": 200
}
]
}
]
}

View File

@@ -1,42 +0,0 @@
{
"type": "multi_action",
"title": "Multi Action Dialog",
"body": [
{
"type": "plain_message",
"contents": "Welcome to the server! Please read the rules carefully.",
"width": 200
},
{
"type": "plain_message",
"contents": "The rules are: blah blah blah.",
"width": 400
}
],
"actions": [
{
"label": "Action 1",
"id":"whatever",
"on_submit": {
"type": "command_template",
"template": "tellraw @a '$(example) $(extra1) $(extra2)'"
}
},
{
"label": "Action 2",
"id":"whatever2",
"on_submit": {
"type": "command_template",
"template": "tellraw @a '$(example) $(extra1) $(extra2)'"
}
},
{
"label": "Action 3",
"id":"whatever3",
"on_submit": {
"type": "command_template",
"template": "tellraw @a '$(example) $(extra1) $(extra2)'"
}
}
]
}

View File

@@ -1,24 +0,0 @@
{
"type": "notice",
"title": "Notice Dialog",
"body": [
{
"type": "plain_message",
"contents": "Welcome to the server! Please read the rules carefully.",
"width": 200
},
{
"type": "plain_message",
"contents": "The rules are: blah blah blah.",
"width": 400
}
],
"action": {
"label": "Understood!",
"id":"whatever",
"on_submit": {
"type": "command_template",
"template": "tellraw @a '$(example) $(extra1) $(extra2)'"
}
}
}

View File

@@ -1,43 +0,0 @@
{
"type": "simple_input_form",
"title": "Simple Input Form Dialog",
"inputs": [
{
"type":"text",
"label": "Text input",
"key": "key1"
},
{
"type":"boolean",
"label": "Checkbox",
"key": "key2"
},
{
"type": "number_range",
"label": "Number Range",
"start": 50.0,
"end": 420.0,
"steps": 5,
"initial": 200.0,
"key": "key2"
},
{
"type": "single_option",
"label": "Single Option",
"options": [
{"id": "opt1", "display": "Option 1", "initial": true},
{"id": "opt1", "display": "Option 2"},
{"id": "opt1", "display": "Option 3"}
],
"key": "key3"
}
],
"action": {
"label": "Create!",
"id":"whatever",
"on_submit": {
"type": "command_template",
"template": "tellraw @a '$(example) $(extra1) $(extra2)'"
}
}
}