Music
Full functional music function
How to use with default settings.
const {BotAccount} = require('sphinx-bc'); //npm i sphinx-bc@latest
new BotAccount({token: "yourBotToken"}).music({prefix: "Your Prefix"});
//use prefix + "help" to see the commandsHow to use with customization settings
const {BotAccount} = require('sphinx-bc'); // npm i sphinx-bc@latest
new BotAccount({token: "YourBotToken"}).music({
prefix: "YourPrefix",
//Customizing Distube
leaveOnEmpty: true,
leaveOnFinish: false,
leaveOnStop: true,
searchSongs: 10,
searchCooldown: 60,
emptyCooldown: 60,
nsfw: true
// Customizing commands
play: "p",
stop: "s",
pause: "pau",
resume: "r",
volume: "vol",
queue: 'q',
jump: "j",
previous: "prev",
shuffle: "shu",
skip: "sk",
autoplay: "auto",
help: "h"
})options
What they do
default
Trigger Commands
What they do
default
Last updated