2020-07-18 21:37:51 -04:00
|
|
|
# Project Jul-2020 Discord Bot
|
2020-07-20 17:17:08 -04:00
|
|
|
A Discord bot that's made for Alee's birthday. Written in Discord.JS.
|
2020-07-20 16:09:35 -04:00
|
|
|
|
2020-07-20 17:55:27 -04:00
|
|
|
If there's anything wrong, feel free to make a fork and put a pull request.
|
|
|
|
|
2020-07-20 16:09:35 -04:00
|
|
|
# Configuration
|
2020-07-20 20:26:26 -04:00
|
|
|
Make a new file called `config.json`.
|
2020-07-20 16:09:35 -04:00
|
|
|
```
|
|
|
|
{
|
|
|
|
"token": "token_here",
|
|
|
|
"prefix": "!",
|
2020-07-20 20:17:40 -04:00
|
|
|
"botOwner": "your_user_id_here",
|
2020-07-20 20:35:46 -04:00
|
|
|
"statusChannel": "channel_id",
|
|
|
|
"voiceChannel": "voice_channel_id"
|
2020-07-20 16:09:35 -04:00
|
|
|
}
|
2020-07-20 16:57:03 -04:00
|
|
|
```
|
|
|
|
|
2020-07-20 20:26:26 -04:00
|
|
|
Add your own audio files using the mp3 file extension to `./music`.
|
|
|
|
|
|
|
|
Launch the bot using `node bot.js` in terminal.
|
2020-07-20 20:12:52 -04:00
|
|
|
|
2020-07-20 16:57:03 -04:00
|
|
|
# Help Command
|
|
|
|
```
|
|
|
|
Public Only
|
|
|
|
-----------
|
2020-07-20 20:26:26 -04:00
|
|
|
help - Displays commands.
|
2020-07-20 16:57:03 -04:00
|
|
|
ping - Pong!
|
2020-07-20 20:26:26 -04:00
|
|
|
git - Links to the source repo.
|
|
|
|
about - About the bot.
|
2020-07-20 16:57:03 -04:00
|
|
|
|
|
|
|
Bot Owner Only
|
|
|
|
--------------
|
2020-07-20 20:26:26 -04:00
|
|
|
join - Joins voice chat.
|
|
|
|
skip - Skips the audio track.
|
|
|
|
leave - Leaves voice chat.
|
|
|
|
stop - Stops bot.
|
2020-07-20 17:17:08 -04:00
|
|
|
```
|