diff options
| author | Mattie <pugmatt@gmail.com> | 2022-04-08 02:22:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-08 02:22:44 -0400 |
| commit | 006117551fe345b1ab7291bb5ad4b4f127eab75b (patch) | |
| tree | 03c0ed195e410e75b6344450d17483d2eb062dfc | |
| parent | 68cc4ae11c3ac66b862c5e986172a299edf929f3 (diff) | |
| download | BedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.tar.gz BedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.tar.bz2 BedrockConnect-006117551fe345b1ab7291bb5ad4b4f127eab75b.zip | |
Add README instructions for Custom Server Groups1.17
| -rw-r--r-- | README.md | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -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. |
