1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-19 22:11:55 +00:00
musix-oss/events/message.js

25 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2019-09-15 06:18:33 +00:00
module.exports = {
name: 'message',
2024-02-09 09:53:30 +00:00
async execute(client, message) {
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");
2024-02-09 09:53:30 +00:00
return client.funcs.exe(message, args, client, 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;
2024-02-09 09:53:30 +00:00
client.funcs.exe(message, args, client, prefix, command);
2019-09-15 06:18:33 +00:00
}
2019-10-10 13:43:04 +00:00
}