mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-21 22:14:34 +02:00
Current Changes are in
This commit is contained in:
@@ -24,13 +24,13 @@ module.exports = class BanCommand extends commando.Command {
|
||||
let userToBan = message.mentions.users.first();
|
||||
let reason = message.content.split(" ").slice(2).join(" ");
|
||||
if (message.mentions.users.size !== 1) {
|
||||
return message.channel.send(":x: Error! Please mention one user!");
|
||||
let mentionError = await message.channel.send(":x: Error! Please mention one user!");
|
||||
}
|
||||
else {
|
||||
if (message.member.hasPermission('BAN_MEMBERS')) {
|
||||
if (message.guild.member(userToBan).bannable) {
|
||||
await message.channel.send(":ok_hand:");
|
||||
await message.guild.member(userToBan).ban();
|
||||
let okHandMes = await message.channel.send(":ok_hand:");
|
||||
let banMember = await message.guild.member(userToBan).ban();
|
||||
if (message.guild.channels.exists("name", "mod_logs")) {
|
||||
const embed = new Discord.RichEmbed()
|
||||
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
||||
@@ -38,23 +38,23 @@ module.exports = class BanCommand extends commando.Command {
|
||||
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
||||
.setTimestamp()
|
||||
.setDescription(`**Member:** ${userToBan.username}#${userToBan.discriminator} (${userToBan.id})\n**Action:** Ban\n**Reason:** ${reason}`);
|
||||
return message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
|
||||
let modLog = await message.guild.channels.find('name', 'mod_logs').sendEmbed(embed);
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
let modLogNote = await message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! This member cannot be banned! Perhaps they have a higher role than me?");
|
||||
let banErr = await message.channel.send(":x: Error! This member cannot be banned! Perhaps they have a higher role than me?");
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! You don't have the Ban Members Permission!");
|
||||
let permissionErr = await message.channel.send(":x: Error! You don't have the Ban Members Permission!");
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! This command does not work in DM!");
|
||||
let dmErr = await message.channel.send(":x: Error! This command does not work in DM!");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -21,13 +21,13 @@ module.exports = class KickCommand extends commando.Command {
|
||||
let userToKick = message.mentions.users.first();
|
||||
let reason = message.content.split(" ").slice(2).join(" ");
|
||||
if (message.mentions.users.size !== 1) {
|
||||
return message.channel.send(":x: Error! Please mention one user!");
|
||||
let mentionError = await message.channel.send(":x: Error! Please mention one user!");
|
||||
}
|
||||
else {
|
||||
if (message.member.hasPermission('KICK_MEMBERS')) {
|
||||
if (message.guild.member(userToKick).kickable) {
|
||||
await message.channel.send(":ok_hand:");
|
||||
await message.guild.member(userToKick).kick();
|
||||
let okHandMes = await message.channel.send(":ok_hand:");
|
||||
let kickMember = await message.guild.member(userToKick).kick();
|
||||
if (message.guild.channels.exists("name", "mod_logs")) {
|
||||
const embed = new Discord.RichEmbed()
|
||||
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
||||
@@ -35,23 +35,23 @@ module.exports = class KickCommand extends commando.Command {
|
||||
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
||||
.setTimestamp()
|
||||
.setDescription(`**Member:** ${userToKick.username}#${userToKick.discriminator} (${userToKick.id})\n**Action:** Kick\n**Reason:** ${reason}`);
|
||||
return message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
|
||||
let modLog = await message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
let modLogNote = await message.channel.send(":notepad_spiral: **Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! This member cannot be kicked! Perhaps they have a higher role than me?");
|
||||
let kickErr = await message.channel.send(":x: Error! This member cannot be kicked! Perhaps they have a higher role than me?");
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! You don't have the Kick Members Permission!");
|
||||
let permissionErr = await message.channel.send(":x: Error! You don't have the Kick Members Permission!");
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! This command does not work in DM!");
|
||||
let dmErr = await message.channel.send(":x: Error! This command does not work in DM!");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -21,11 +21,11 @@ module.exports = class WarnCommand extends commando.Command {
|
||||
let userToWarn = message.mentions.users.first();
|
||||
let reason = message.content.split(" ").slice(2).join(" ");
|
||||
if (message.mentions.users.size !== 1) {
|
||||
return message.channel.send(":x: Error! Please mention one user!");
|
||||
let mentionError = await message.channel.send(":x: Error! Please mention one user!");
|
||||
}
|
||||
else {
|
||||
if (message.member.hasPermission('MANAGE_MESSAGES')) {
|
||||
await message.channel.send(":ok_hand:");
|
||||
let okHandMes = await message.channel.send(":ok_hand:");
|
||||
if (message.guild.channels.exists("name", "mod_logs")) {
|
||||
const embed = new Discord.RichEmbed()
|
||||
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
||||
@@ -33,19 +33,19 @@ module.exports = class WarnCommand extends commando.Command {
|
||||
.setFooter('XiaoBot Moderation', this.client.user.avatarURL)
|
||||
.setTimestamp()
|
||||
.setDescription(`**Member:** ${userToWarn.username}#${userToWarn.discriminator} (${userToWarn.id})\n**Action:** Warn\n**Reason:** ${reason}`);
|
||||
return message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
|
||||
let modLog = await message.guild.channels.find('name', 'mod_logs').sendEmbed(embed).catch(console.error);
|
||||
}
|
||||
else {
|
||||
return message.channel.send("**Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
let modLogNote = await message.channel.send("**Note: No log will be sent, as there is not a channel named 'mod_logs'. Please create it to use the logging feature.**");
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! You don't have the Manage Messages Permission!");
|
||||
let permissionErr = await message.channel.send(":x: Error! You don't have the Manage Messages Permission!");
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
return message.channel.send(":x: Error! This command does not work in DM!");
|
||||
let dmErr = await message.channel.send(":x: Error! This command does not work in DM!");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user