1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/commands/info.js

16 lines
1015 B
JavaScript
Raw Normal View History

2019-08-02 08:32:00 +00:00
module.exports = {
name: 'info',
description: 'Info command.',
cooldown: 5,
execute(message, args, client, RichEmbed) {
const embed = new RichEmbed()
.setTitle('**Musix instructions and info**:')
.addField('If you encounter any errors with musix please report about them on the offical musix support server!', 'https://discord.gg/rvHuJtB', true)
2019-08-02 18:35:25 +00:00
.addField('On errors you can do -stop to reset the queue and try again!', 'To use all commands make sure you have `MANAGE_MESSAGES` and `MANAGE_CHANNELS` permissions!')
2019-08-03 07:47:12 +00:00
.addField('Current Ping', `${Math.floor(client.ping * 10) / 10} ms`, true)
2019-08-02 08:32:00 +00:00
.addField('Be careful with the Volume command! Volume is not recommended to be put over 3 with user volume at 100%!', 'Volume will reset to 1 always when a new song begins!', true)
.setAuthor(client.user.username, client.user.displayAvatarURL)
2019-08-02 08:42:28 +00:00
.setColor('#b50002')
2019-08-02 08:32:00 +00:00
return message.channel.send(embed);
}
};