You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
const {Command} = require('../../lib.js')
|
|
|
|
const mCommandModel = require('../../models/mcommands');
|
|
const {ChannelType} = require('discord.js');
|
|
module.exports = class leave extends Command
|
|
{
|
|
constructor(client)
|
|
{
|
|
super(client, {
|
|
name: 'leave',
|
|
group:'music',
|
|
memberName: 'leave',
|
|
description: 'Leaves the voice channel you currently are in.'
|
|
|
|
})
|
|
}
|
|
async run(message, args)
|
|
{
|
|
const Author = message.author
|
|
console.log('Leave: -', Author.username);
|
|
const guild = message.guild.id
|
|
const channel = message.channel.id
|
|
const voice = message.member.voice.channel.id;
|
|
const {ChannelType} = require('discord.js');
|
|
if(message.guild.channels.cache.some(channel =>(channel.type == ChannelType.GuildText && channel.members.has('356104008366030863')&& channel.members.has(Author.id))))
|
|
{
|
|
addToDB('leave', guild, channel,voice);
|
|
message.guild.voiceStates.cache.get('356104008366030863').disconnect()
|
|
message.delete();
|
|
}
|
|
else
|
|
{
|
|
message.reply('Rem isn`t in voice channel!')
|
|
}
|
|
|
|
}
|
|
}
|
|
function addToDB(Command, guild, channel, voice)
|
|
{
|
|
var command = new mCommandModel();
|
|
command.command = Command;
|
|
command.guild = guild;
|
|
command.textchannel = channel;
|
|
command.voice = voice;
|
|
command.save(err=>
|
|
{
|
|
if(err)console.error(err)
|
|
console.log(Command, '- added to DB')
|
|
})
|
|
} |