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

26 lines
1.4 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-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(' ');
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}\`.`);
if (args[1] === 'help') {
const command = client.commands.get("help");
return 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;
const 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;
if (command.onlyDev && message.author.id !== client.config.dev) return message.channel.send(':x: You are not allowed to do that!');
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
}