Skip to content

A Discord music bot that's easy to set up and run yourself

License

Notifications You must be signed in to change notification settings

serogaq/DenyHelper

 
 

Repository files navigation

music_disc

DenyHelper

GitHub package.json version GitHub

Discord.js v14 Music Bot

Supports YouTube, Spotify, SoundCloud streams.

Reference version

node.js v18.16.0
discord.js v14.11.0

Deploying with node.js

Clone the latest version of the repository

git clone https://github.com/serogaq/DenyHelper.git

Install the dependencies

install all the dependencies from package.json

npm install

Configure environment

.env

TOKEN = "your_token"
NAME = "DenyHelper"
PREFIX = "+"
PLAYING = "+help | music"
EMBEDS_COLOR = "#FFFFFF"
DEFAULT_VOLUME = 50
MAX_VOLUME = 100
AUTO_LEAVE = true
AUTO_LEAVE_COOLDOWN = 5000
DISPLAY_VOICE_STATE = true
PORT = 33333

TEXT_QUERY_TYPE = "youtubeSearch"
URL_QUERY_TYPE = "auto"
DP_FORCE_YTDL_MOD = "play-dl"
Detailed description

AUTO_LEAVE : After the music finished, can choose whether let the bot leave voice channel automatically or not.
AUTO_LEAVE_COOLDOWN : Timer for auto disconnect(ms).
DISPLAY_VOICE_STATE : Show voice channel status updates.

TEXT_QUERY_TYPE : The default search engine for text search.
The following are the available options for TEXT_QUERY_TYPE:

autoSearch, youtubeSearch, spotifySearch, soundcloudSearch, appleMusicSearch

URL_QUERY_TYPE : The default search engine for links.
The following are the available options for URL_QUERY_TYPE:

auto, youtube, spotifySong soundcloud, appleMusicSong

DP_FORCE_YTDL_MOD : Streaming extractor settings. The default streaming library used is play-dl.
If you want to use another library, you can install one of the following libraries and change the DP_FORCE_YTDL_MOD setting.

$ npm install ytdl-core
$ npm install @distube/ytdl-core

Running the script

npm run start

Deploying with Docker Compose

image link : https://hub.docker.com/r/hmes98318/music-disc

put your Token into docker-compose.yml

version: '3.8'
services:
  music-disc:
    image: hmes98318/music-disc:1.4.2
    container_name: music-disc
    restart: always
    ports:
      - 33333:33333
    environment:
      TOKEN: "your_token"
      PREFIX: "+"
      PLAYING: "+help | music"
      EMBEDS_COLOR: "#FFFFFF"
      DEFAULT_VOLUME: 50
      MAX_VOLUME: 100
      AUTO_LEAVE: "true"
      AUTO_LEAVE_COOLDOWN: 5000
      DISPLAY_VOICE_STATE: "true"
      TEXT_QUERY_TYPE: "youtubeSearch"
      URL_QUERY_TYPE: "auto"
      DP_FORCE_YTDL_MOD: "play-dl"

Start the container

docker-compose up -d

About

A Discord music bot that's easy to set up and run yourself

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Languages

  • JavaScript 99.7%
  • Dockerfile 0.3%