aboutsummaryrefslogblamecommitdiff
path: root/readme.md
blob: 3229893243d152b0bc30064b252b3a1313b90041 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                               
                                                                                                                                  
 
                                                                          
 
                                                                                                                              

       
                              
                   
                                         
     

   
                                                                                               
 
                                                                                              
 

                                                                                                                          
 
                                                                                                                         
                                                      
# Minecraft Bedrock Discord Bot

## How to
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`.

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",
    "<guild_id>": {
        "bot_masters": <users_discord_id>
    }
}
```
`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]`.

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.