mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
const Command = require('../../structures/Command');
|
|
const path = require('path');
|
|
const { reactIfAble } = require('../../util/Util');
|
|
const fs = require('fs');
|
|
const sounds = fs.readdirSync(path.join(__dirname, '..', '..', 'assets', 'sounds', 'airhorn'));
|
|
|
|
module.exports = class AirhornCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'airhorn',
|
|
group: 'voice',
|
|
memberName: 'airhorn',
|
|
description: 'Plays an airhorn sound in a voice channel.',
|
|
guildOnly: true,
|
|
throttling: {
|
|
usages: 1,
|
|
duration: 10
|
|
},
|
|
userPermissions: ['CONNECT', 'SPEAK'],
|
|
credit: [
|
|
{
|
|
name: 'Discord',
|
|
url: 'https://discord.com/',
|
|
reason: 'Airhorn Sounds',
|
|
reasonURL: 'https://github.com/discord/airhornbot/tree/master/audio'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
async run(msg) {
|
|
const connection = this.client.voice.connections.get(msg.guild.id);
|
|
if (!connection) {
|
|
const usage = this.client.registry.commands.get('join').usage();
|
|
return msg.reply(`I am not in a voice channel. Use ${usage} to fix that!`);
|
|
}
|
|
const airhorn = sounds[Math.floor(Math.random() * sounds.length)];
|
|
connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'airhorn', airhorn));
|
|
await reactIfAble(msg, this.client.user, '🔉');
|
|
return null;
|
|
}
|
|
};
|