You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository is a template that everyone can use for the start of their discord bot.
3
5
4
-
The list of update are available [here](UPDATES.md).
6
+
When I first started creating my discord bot it took me a while to get everything setup and working with cogs and more. I would've been happy if there were any template existing. But there wasn't any existing template. That's why I decided to create my own template to let <b>you</b> guys create your discord bot in an easy way.
5
7
6
-
## Bots who used this template
8
+
## Authors
9
+
***[Krypton (@kkrypt0nn)](https://github.com/kkrypt0nn)** - The only and one developer
7
10
8
-
*DM Krypton#2188 to get yourself in this list*
11
+
## Support
12
+
13
+
If you need some help for something, do not hesitate to join my discord server [here](https://discord.gg/xkWRGBY).
9
14
10
-
## How to use it
15
+
All the updates of the template are available [here](UPDATES.md).
11
16
17
+
## How to download it
18
+
19
+
This repository is now a template, on the top left you can simple click on "**Use this template**" to create a GitHub repository based on this template.
20
+
21
+
Alternatively you can do the following:
12
22
* Clone/Download the repository
13
-
* Create a discord bot [here](https://discordapp.com/developers/applications)
23
+
* To clone it and get the updates you can definitely use the command
24
+
`git clone`
25
+
* Create a discord bot [here](https://discord.com/developers/applications)
14
26
* Get your bot token
15
-
* Put the bot token in the python file at the line 14
16
27
* Invite your bot on servers using the following invite:
Replace `YOUR_APPLICATION_ID_HERE` witht the application ID
19
-
* Then open terminal/command prompt and run the bot using: `python3 bot.py`
28
+
https://discordapp.com/oauth2/authorize?&client_id=YOUR_APPLICATION_ID_HERE&scope=bot&permissions=8 (Replace `YOUR_APPLICATION_ID_HERE` with the application ID)
29
+
30
+
## How to setup
20
31
21
-
## Things to edit
22
-
Make sure to edit those things:
23
-
*`BOT_PREFIX` with the prefix you want
24
-
*`TOKEN` with your bot token
25
-
*`OWNER` with your user discord ID
26
-
*`BLACKLIST` with the user discord IDs of people that should not be able to use the bot commands
32
+
To setup the bot I made it as simple as possible. I now created a [config.py](config.py) file where you can put the needed things to edit.
| APPLICATION_ID | The application ID of your bot |
41
+
| OWNERS | The user ID of all the bot owners |
42
+
| BLACKLIST | The user ID of all the users who can't use the bot |
43
+
| STARTUP_COGS | The cogs that should be automatically loaded when you start the bot |
44
+
45
+
## How to start
46
+
47
+
To start the bot you simply need to launch, either your terminal (Linux, Mac & Windows) or your Command Prompt (Windows).
48
+
49
+
If you have multiple versions of python installed (2.x and 3.x) then you will need to use the following command:
50
+
```
51
+
python3 bot.py
52
+
```
53
+
or eventually
54
+
```
55
+
python3.8 bot.py
56
+
```
57
+
<br>
58
+
59
+
If you have just installed python today, then you just need to use the following command:
60
+
```
61
+
python bot.py
62
+
```
28
63
29
64
## Built With
30
65
31
-
*[Python 3](https://www.python.org/) - Used Python 3
66
+
*[Python 3.8](https://www.python.org/)
32
67
33
68
## Issues or Questions
34
69
@@ -38,9 +73,9 @@ If you have any issues or questions of how to code a specific command, make sure
38
73
39
74
We use [SemVer](http://semver.org) for versioning. For the versions available, see the [tags on this repository](https://github.com/kkrypt0nn/Python-Discord-Bot-Template/tags).
40
75
41
-
## Author(s)
76
+
## Bots who used this template
42
77
43
-
***[Krypton](https://spacelab.wtf)** - The only and one developer
0 commit comments