Supports YouTube, Spotify, SoundCloud streams.
+back/rewind
+filter/f
+leave/stop
+loop/lp
+nowplaying/np
+pause
+ping
+play/p
+time/t
+queue/q, list
+remove/r
+resume
+save
+search/find
+server
+shuffle/random
+skip/s
+status/usage
+volume/v
node.js v18.12.1
discord.js v14.6.0
git clone https://github.com/Spacey4K/Music-Disc
or click here to download
auto install all dependencies on package.json
npm install
TOKEN = "your_token"
NAME = "Music Disc"
PREFIX = "+"
PLAYING = "+help | music"
COLOR = "#FFFFFF"
DEFAULT_VOLUME = 50
MAX_VOLUME = 100
AUTO_LEAVE = true
AUTO_LEAVE_COOLDOWN = 5000
DISPLAY_VOICE_STATE = true
GUILD_ID = ""
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.
GUILD_ID
: ID of the server you want to deploy slash commands to.
npm run start
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.2.5
container_name: music-disc
restart: always
environment:
TOKEN: "your_token"
PREFIX: "+"
PLAYING: "+help | music"
COLOR: "#FFFFFF"
DEFAULTVOLUME: 50
MAXVOLUME: 100
AUTO_LEAVE: "true"
AUTO_LEAVE_COOLDOWN: 5000
DISPLAY_VOICE_STATE: "true"
ports:
- 33333:33333
docker-compose up -d