mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
a64f9d2325
All messages reworked.
28 lines
1.5 KiB
JavaScript
28 lines
1.5 KiB
JavaScript
module.exports = {
|
|
name: 'message',
|
|
async execute(client, msg, Discord) {
|
|
if (msg.author.bot || !msg.guild) return;
|
|
let prefix = client.global.db.guilds[msg.guild.id].prefix;
|
|
if (client.config.devMode) prefix = client.config.devPrefix;
|
|
const args = msg.content.slice(prefix.length).split(' ');
|
|
if (msg.mentions.users.first()) {
|
|
if (msg.mentions.users.first().id === client.user.id) {
|
|
if (!args[1]) return;
|
|
if (args[1] === 'prefix') return msg.channel.send(`${client.messages.prefixHere}\`${prefix}\`.`);
|
|
if (args[1] === 'help') {
|
|
const command = client.commands.get("help");
|
|
return client.funcs.exe(msg, args, client, Discord, prefix, command);
|
|
}
|
|
}
|
|
}
|
|
if (!msg.content.startsWith(prefix)) return;
|
|
if (!args[0]) return;
|
|
const commandName = args[0].toLowerCase();
|
|
if (commandName === "none") return;
|
|
const command = client.commands.get(commandName) || client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName)) || client.commandAliases.get(commandName);
|
|
if (!command && msg.content !== `${prefix}`) return;
|
|
if (command.onlyDev && msg.author.id !== client.config.devId) return msg.channel.send(client.messages.notAllowed);
|
|
if (client.config.devMode && msg.member.id !== client.config.devId) return msg.channel.send(client.messages.devMode);
|
|
client.funcs.exe(msg, args, client, Discord, prefix, command);
|
|
}
|
|
} |