add user, rework moderation

This commit is contained in:
Akumatic 2018-06-20 17:06:33 +02:00
parent e224c9a41a
commit a0792d8652
2 changed files with 16 additions and 3 deletions

View File

@ -18,9 +18,6 @@ Depending on your OS and environment you need to type `python3` or another equiv
2. Scroll down and "Create a Bot User"
3. Reveal and copy Token of your new Bot
4. Open [settings.json](settings.json) and paste your Token into the quotes after `"token":`
5. Open Discord and go to Settings > Appearance and activate "Developer Mode"
6. Go to any Server you're in, right click your profile name in the user list and click "Copy ID"
7. Open [settings.json](settings.json), replace the 0 after `"owner":` and paste it into the brackets after `"admins":` and `"mods":`
### Start the Bot
Just open a console and type ```python akuma.py```

16
settings.json Normal file
View File

@ -0,0 +1,16 @@
{
"token": "",
"prefix": "~",
"description": "A Discord Bot written by Akuma#7346",
"game": "",
"owner": 0,
"adminRole": [],
"modRole": [],
"extensions": [
"fun",
"moderation",
"user"
],
"joinMessage": "",
"suggestionChannel": 0
}