1.3.4 • Published 5 years ago

discord.js-vibes v1.3.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Support server

Discord Vibes

Commands

play {Search String} | Plays the song selected.

pause | Pauses the playing song.

resume | Resumes the paused song.

leave | Leaves the channel the bot is on.

skip | Skips the playing song.

queue | Shows you all songs in the queue.

repeat | Enables or disables song repeat.

volume {Number || current} | Shows you the current volume or changes the volume depending on what you type.

Basic Example

const Discord = require("discord.js");
const Music = require("discord.js-vibes");

let bot = new Discord.Client();

Music.start(bot, {
    youtubeAPIKey: 'YOUTUBE_API_KEY'
  });

bot.login("BOT_TOKEN");

Full Example

const Discord = require("discord.js");
const Music = require("discord.js-vibes");

let bot = new Discord.Client();

Music.start(bot, {
    youtubeAPIKey: 'YOUTUBE_API_KEY',
    botPrefix: 'BOT_PREFIX', //Default is '!'
    embedColor: 'EMBED_COLOR', //Use a HTML color code
    maxVolume: 200, //Default 200 
    botLogging: true, //Set this to false if you don't want console logging.
    /*commandNameHereInLowerCase*/Alias: "ALIAS" //Add an alternative command name 
  });

bot.login("BOT_TOKEN");
1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.9

5 years ago

1.2.8

5 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago