diff options
author | Samot19 <81269200+Samot19@users.noreply.github.com> | 2021-03-23 23:20:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 23:20:46 +0000 |
commit | 2b0676e383a71cc984ac04fa4050e1c1dc1491c3 (patch) | |
tree | d08e43e1bf990ac98b1cefd40e267a24b96ee488 | |
parent | f98fc95b15b79af9e67d7c837d45ab727d3bda33 (diff) | |
download | steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar.gz steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar.bz2 steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar.lz steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar.xz steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.tar.zst steve-bot-2b0676e383a71cc984ac04fa4050e1c1dc1491c3.zip |
Fix typo, add punctuation, and make wording clearer.
-rwxr-xr-x | readme.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,11 +1,11 @@ # Minecraft Bedrock Discord Bot ## How to -Launch the bot with `python3 main.py` and you're ready to go. Unless dependencies. Dependencies are google cloud and discord. +Launch the bot with `python3 main.py` and you're ready to go, unless dependencies are missing. These are google cloud and discord. -Install the dependencies with `python -m pip install -r requirements.txt` +Install the dependencies with `python -m pip install -r requirements.txt`. -A few "dangerous" commands such as `!purge` are restriced to `bot_masters`, to add a bot master add it to `config.json`. Example: +A few "dangerous" commands such as `!purge` are restricted to `bot_masters`. You can add botmasters in `config.json`. Example: ```json { "token": "your_bot_token", @@ -14,12 +14,12 @@ A few "dangerous" commands such as `!purge` are restriced to `bot_masters`, to a } } ``` -`guild_id` is the ID of the discord server in the form of a string while user IDs are integers +`guild_id` is the ID of the discord server in the form of a string while user IDs are integers. -You can also use lists, for example: `"bot_masters": [280428276810383370, 99457716614885376]` +You can also use lists, for example: `"bot_masters": [280428276810383370, 99457716614885376]`. -A user added as a botmaster will be able to edit the config via discord with the command `!setvar <var_name> <var_value>` -`!setvar` also supports lists which can be added like so: `!setvar <var_name> [<index 0>, <index 1>]` +A user added as a botmaster will be able to edit the config via discord with the command `!setvar <var_name> <var_value>`. +`!setvar` also supports lists which can be added like so: `!setvar <var_name> [<index 0>, <index 1>]`. This bot was built as a fork of [celesteBot](https://github.com/CelesteClassic/celestebot), so a lot of code is recycled. Feel free to make a pull request or use the code here. |