summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMattie <pugmatt@gmail.com>2022-04-08 02:22:44 -0400
committerGitHub <noreply@github.com>2022-04-08 02:22:44 -0400
commit006117551fe345b1ab7291bb5ad4b4f127eab75b (patch)
tree03c0ed195e410e75b6344450d17483d2eb062dfc
parent68cc4ae11c3ac66b862c5e986172a299edf929f3 (diff)
downloadBedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.tar.gz
BedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.tar.bz2
BedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.zip
Add README instructions for Custom Server Groups1.17
-rw-r--r--README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md
index 71b40b7..04c70f8 100644
--- a/README.md
+++ b/README.md
@@ -129,6 +129,37 @@ When hosting your own serverlist server, you add your own custom servers to the
]
```
+You can also specify groups, such as the following format:
+```json
+[
+ {
+ "name": "My Server Group",
+ "iconUrl": "https://i.imgur.com/3BmFZRE.png",
+ "content": [
+ {
+ "name": "Server in Group 1",
+ "iconUrl": "https://i.imgur.com/3BmFZRE.png",
+ "address": "mc1.example.com",
+ "port": 19132
+ },
+ ]
+ },
+ {
+ "name": "My Custom Server 1",
+ "iconUrl": "https://i.imgur.com/3BmFZRE.png",
+ "address": "mc1.example.com",
+ "port": 19132
+ },
+ {
+ "name": "My Custom Server 2",
+ "iconUrl": "https://i.imgur.com/3BmFZRE.png",
+ "address": "mc2.example.com",
+ "port": 19132
+ }
+]
+```
+
+
Then, add this argument to your startup script: `custom_servers=[path to json file]`
The icon URL is not required, if omitted it will show the default icon.