123 lines
6.1 KiB
Markdown
123 lines
6.1 KiB
Markdown
<a href="https://discord.gg/wRCgB7vBQv">
|
|
<img src="https://img.shields.io/discord/811542332678996008?color=7289DA&label=Support&logo=discord&style=for-the-badge" alt="Discord">
|
|
</a>
|
|
|
|
# Vocard (Discord Music Bot)
|
|
> Vocard is a simple custom Disocrd Music Bot built with Python & [discord.py](https://discordpy.readthedocs.io/en/stable/)
|
|
|
|
## Tutorial
|
|
Click on the image below to watch the tutorial on Youtube.
|
|
|
|
[](https://www.youtube.com/watch?v=f_Z0RLRZzWw)
|
|
|
|
## Screenshot
|
|
<div style="display: flex">
|
|
<img src="https://user-images.githubusercontent.com/94597336/218930155-630d8a0c-aa2d-4fcf-b6b4-957b8b2ba891.png" height=300>
|
|
<img src="https://user-images.githubusercontent.com/94597336/218930292-a2221d22-40bb-4040-9823-6527f2f5f833.png" height=300>
|
|
<img src="https://user-images.githubusercontent.com/94597336/218930558-f0b3bc78-cf0f-4b75-853e-eb15b13287c2.png" height=300>
|
|
<img src="https://user-images.githubusercontent.com/94597336/218930368-46fff9ef-628b-4daa-aee1-7c5e5692700c.png" height=300>
|
|
</div>
|
|
|
|
## Run the Projects
|
|
[](https://replit.com/new/github/ChocoMeow/Vocard)
|
|
|
|
## Requirements
|
|
* [Python 3.8+](https://www.python.org/downloads/)
|
|
* [Modules in requirements](https://github.com/ChocoMeow/Vocard/blob/main/requirements.txt)
|
|
* [Lavalink Server (Requires 3.7.0+)](https://github.com/freyacodes/Lavalink)
|
|
|
|
## Quick Start
|
|
```sh
|
|
git clone https://github.com/ChocoMeow/Vocard.git #Clone the repository
|
|
cd Vocard #Go to the directory
|
|
python -m pip install -r requirements.txt #Install required packages
|
|
```
|
|
After installing all packages, you must configure the bot before to start! [How To Configure](https://github.com/ChocoMeow/Vocard#configuration)<br />
|
|
Start your bot with `python main.py`
|
|
|
|
## Configuration
|
|
1. **Rename `.env Example` to `.env` and fill all the values**
|
|
```sh
|
|
TOKEN = XXXXXXXXXXXXXXXXXXXXXXXX.XXXXXX.XXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
CLIENT_ID = 123456789012345678
|
|
BUG_REPORT_CHANNEL_ID = 123456789012345678
|
|
|
|
SPOTIFY_CLIENT_ID = 0XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
SPOTIFY_CLIENT_SECRET = 0XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
|
|
YOUTUBE_API_KEY = AXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
|
|
|
|
MONGODB_URL = mongodb+srv://user:password@clusterURL
|
|
MONGODB_NAME = Vocard
|
|
```
|
|
| Values | Description |
|
|
| --- | --- |
|
|
| TOKEN | Your Discord bot token [(Discord Portal)](https://discord.com/developers/applications) |
|
|
| CLIENT_ID | Your Discord bot client id [(Discord Portal)](https://discord.com/developers/applications) |
|
|
| BUG_REPORT_CHANNEL_ID | All the error messages will send to this text channel ***(optional)*** |
|
|
| SPOTIFY_CLIENT_ID | Your Spoity client id [(Spotify Portal)](https://developer.spotify.com/dashboard/applications) ***(optional)*** |
|
|
| SPOTIFY_CLIENT_SECRET | Your Spoity client sercret id [(Spotify Portal)](https://developer.spotify.com/dashboard/applications) ***(optional)*** |
|
|
| YOUTUBE_API_KEY | Your youtube api key [(Google API)](https://cloud.google.com/apis) ***(optional)*** |
|
|
| MONGODB_URL | Your Mongo datebase url [(Mongodb)](https://www.mongodb.com/) |
|
|
| MONGODB_NAME | The datebase name that you created on [Mongodb](https://www.mongodb.com/) |
|
|
|
|
2. **Rename `settings Example.json` to `settings.json` and customize your settings**
|
|
***(Note: Do not change any keys from `settings.json`)***
|
|
```json
|
|
{
|
|
"nodes": {
|
|
"DEFAULT": {
|
|
"host": "127.0.0.1",
|
|
"port": 2333,
|
|
"password": "password",
|
|
"secure": false,
|
|
"identifier": "DEFAULT"
|
|
}
|
|
},
|
|
"prefix": "?",
|
|
"bot_access_user": [],
|
|
"color_code":"0xb3b3b3",
|
|
"default_max_queue": 1000,
|
|
"emoji_source_raw": {
|
|
"youtube": "<:youtube:826661982760992778>",
|
|
"youtube music": "<:youtube:826661982760992778>",
|
|
"spotify": "<:spotify:826661996615172146>",
|
|
"soundcloud": "<:soundcloud:852729280027033632>",
|
|
"twitch": "<:twitch:852729278285086741>",
|
|
"bandcamp": "<:bandcamp:864694003811221526>",
|
|
"vimeo": "<:vimeo:864694001919721473>",
|
|
"apple": "<:applemusic:994844332374884413>",
|
|
"reddit": "<:reddit:996007566863773717>",
|
|
"tiktok": "<:tiktok:996007689798811698>"
|
|
},
|
|
"controller": [
|
|
["back", "resume", "skip", {"stop": "red"}, "add"],
|
|
["tracks"]
|
|
],
|
|
"cooldowns": {
|
|
"connect": [2, 30],
|
|
"playlist view": [1, 30]
|
|
},
|
|
"aliases": {
|
|
"connect": ["join"],
|
|
"leave": ["stop", "bye"],
|
|
"play": ["p"],
|
|
"view": ["v"]
|
|
}
|
|
}
|
|
```
|
|
* For `nodes` you have to provide host, port, password and identifier of the [Lavalink Server](https://github.com/freyacodes/Lavalink)
|
|
* For `prefix` you can set the prefix of the bot. (If you don't provide any prefix, the bot will disable the message command).
|
|
* For `bot_access_user` you can pass the [discord user id](https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID-). Example: `[123456789012345678]`
|
|
* For `color_code` you must pass a [Hexadecimal color code](https://htmlcolorcodes.com/) and add `0x` before the color code. Example: `"0xb3b3b3"`
|
|
* For `default_max_queue` you can set a default maximum number of tracks that can be added to the queue.
|
|
* For `emoji_source_raw` you can change the source emoji of the track with discord emoji like `<:EMOJI_NAME:EMOJI_ID>`
|
|
* For `cooldowns` you can set a custom cooldown in the command. Example: `"command_name": [The total number of tokens available, The length of the cooldown period in seconds]`
|
|
* For `aliases` you can set custom aliases in the command. Example: `"command_name": [alias1, alias2, ...]`
|
|
* For `controller` you can set custom buttons in controller, you have to pass `2D Array` into controller. [Example Here](https://github.com/ChocoMeow/Vocard/blob/main/BUTTONS.md#examples)
|
|
|
|
## How to update?
|
|
1. Run `python update.py --check` to check if your bot is up to date
|
|
2. Run `python update.py --start` to start update your bot <br/>
|
|
***Note: Make sure there are no personal files in the directory! Otherwise it will be deleted.***
|