docs(minecraft-bedrock): helmify docs (#32737)
**Description** <!-- Helmify docs --> ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code - [x ] 📜 Documentation Changes **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [x ] 📄 I have made changes to the documentation - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [x ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or `fix(docs):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._
This commit is contained in:
@@ -2,15 +2,29 @@
|
||||
title: How To
|
||||
---
|
||||
|
||||
In order to OP a player through `OPS` variable you will need to get the XUID of the player. You can temporarily join and grab your XUID from the logs.
|
||||
## Use of XUID
|
||||
|
||||

|
||||
The Bedrock Dedicated Server requires permissions be defined with XUIDs. There are various tools to look these up online and they are also printed to the log when a player joins.
|
||||
|
||||
To add multiple XUIDS, you can do so by separating each `xuid` by a comma:
|
||||
```bash
|
||||
[2025-03-01 08:49:08:469 INFO] Player connected: Truecharts, xuid: 2345678909876543
|
||||
```
|
||||
|
||||

|
||||
To add multiple XUIDs, you can do so by separating each `xuid` by a comma:
|
||||
|
||||
Or use this 3rd party service [here](https://www.cxkes.me/xbox/xuid) to grab the XUID of the username instead.
|
||||
```yaml
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
OPS: "XUID,XUID" # is used to define operators on the server.
|
||||
MEMBERS: "XUID,XUID" # is used to define the members on the server.
|
||||
VISITORS: "XUID,XUID" # is used to define visitors on the server.
|
||||
```
|
||||
|
||||
Example of a 3rd party service [here](https://www.cxkes.me/xbox/xuid) to grab the XUID of the username instead.
|
||||
|
||||
:::caution
|
||||
|
||||
@@ -48,7 +62,7 @@ The `/data/permissions.json` should look something like this:
|
||||
|
||||
This image comes bundled with a script called send-command that will send a Bedrock command and argument to the Bedrock server console. The output of the command only be visible in the container logs.
|
||||
|
||||
shell into the container and run whatever command you want for example:
|
||||
Shell into the container and run whatever command you want for example:
|
||||
|
||||
```shell
|
||||
send-command gamerule dofiretick false
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.6 KiB |
Reference in New Issue
Block a user