Files
truecharts/charts/stable/minecraft-bedrock/docs/How-To.md
T
kqmaverick ef9315820f docs(multiple charts): fix asides (#21073)
**Description**
Fixes asides and restores nextcloud migration guide images.

⚒️ Fixes  # 

**⚙️ 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

**🧪 How Has This Been Tested?**

**📃 Notes:**

**✔️ 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
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 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):` or `chore(chart-name):`

** 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._
2024-04-20 20:03:07 +02:00

56 lines
1.4 KiB
Markdown

---
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.
![console](./imgs/console.png)
To add multiple XUIDS, you can do so by separating each `xuid` by a comma:
![xuids](./imgs/xuids.png)
Or use this 3rd party service [here](https://www.cxkes.me/xbox/xuid) to grab the XUID of the username instead.
:::caution
We have no control over the 3rd service at all. Use it at your own risk.
:::
The `/data/permissions.json` should look something like this:
```json
[
{
"permission": "operator",
"xuid": "XUID"
},
{
"permission": "operator",
"xuid": "XUID"
},
{
"permission": "operator",
"xuid": "XUID"
}
]
```
:::tip
- You can also reach us using [Discord](https://discord.gg/tVsPTHWTtr) for real-time feedback and support
- If you found a bug in our chart, open a Github [issue](https://github.com/truecharts/apps/issues/new/choose) but generally it's advised to contact us on Discord first in most cases.
:::
## Executing server commands
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
send-command gamerule dofiretick false
```