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

49 lines
2.5 KiB
JavaScript
Raw Normal View History

2019-09-15 06:18:33 +00:00
module.exports = {
name: 'message',
2019-10-10 13:43:04 +00:00
async execute(client, message, Discord) {
2019-09-15 06:18:33 +00:00
if (message.author.bot || !message.guild) return;
2019-10-31 21:40:50 +00:00
if (message.content === '->reset' && message.author.id === client.config.devId) {
2019-10-10 13:43:04 +00:00
client.guilds.forEach(guild => {
2019-10-11 08:48:50 +00:00
client.global.db.guilds[guild.id] = {
prefix: client.config.prefix,
2019-10-10 13:43:04 +00:00
defaultVolume: 5,
2019-10-11 08:48:50 +00:00
permissions: false,
2019-10-12 14:40:00 +00:00
premium: false,
2019-10-13 07:33:59 +00:00
dj: false,
djrole: null
2019-10-10 13:43:04 +00:00
};
return message.channel.send(':white_check_mark: Reset all guild settings for __all__ guilds!');
2019-10-10 13:43:04 +00:00
});
return message.channel.send(':white_check_mark: Reset all guild settings!')
2019-10-31 21:40:50 +00:00
} else if (message.content === '->resetguildsettings' && message.author.id === client.config.devId) {
2019-10-11 08:48:50 +00:00
client.global.db.guilds[message.guild.id] = {
prefix: client.config.prefix,
2019-10-10 13:43:04 +00:00
defaultVolume: 5,
2019-10-11 08:48:50 +00:00
permissions: false,
2019-10-12 14:40:00 +00:00
premium: false,
2019-10-13 07:33:59 +00:00
dj: false,
djrole: null
2019-10-10 13:43:04 +00:00
};
return message.channel.send(':white_check_mark: Reset all guild settings for this guild!');
2019-10-10 13:43:04 +00:00
}
2019-10-13 18:08:04 +00:00
let prefix = client.global.db.guilds[message.guild.id].prefix;
2019-10-10 13:43:04 +00:00
const args = message.content.slice(prefix.length).split(' ');
let commandName;
2019-09-15 06:18:33 +00:00
if (message.mentions.users.first()) {
2019-10-31 18:49:23 +00:00
if (message.mentions.users.first().id === client.user.id) {
if (!args[1]) return;
if (args[1] === 'prefix') return message.channel.send(`My prefix here is: \`${prefix}\`.`);
commandName = args[1].toLowerCase();
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)) || client.commandAliases.get(commandName);
client.funcs.exe(message, args, client, Discord, prefix, command);
}
2019-09-15 06:18:33 +00:00
}
2019-10-11 11:30:10 +00:00
if (!message.content.startsWith(prefix)) return;
2019-09-15 06:18:33 +00:00
if (!args[0]) return;
commandName = args[0].toLowerCase();
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)) || client.commandAliases.get(commandName);
2019-09-15 06:18:33 +00:00
if (!command && message.content !== `${prefix}`) return;
client.funcs.exe(message, args, client, Discord, prefix, command);
2019-09-15 06:18:33 +00:00
}
2019-10-10 13:43:04 +00:00
}