ajoute messageCreate

This commit is contained in:
VALOU3336
2024-02-14 08:19:27 +01:00
parent 7469ee4736
commit 576f5eb05b
6 changed files with 86 additions and 24 deletions
+24
View File
@@ -25,4 +25,28 @@ module.exports = (client) => {
const totalCommands = loadCommands('../commands');
console.log(`Commands => ${totalCommands} commandes préfixées chargées sur le bot`);
client.on('messageCreate', async message => {
//const botId = client.user.id;
//const guildId = message.guild.id;
//const prefix = botTokens.coins[botId].prefix;
const prefix = '!';
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).trim().split(/ +/);
const commandName = args.shift().toLowerCase();
if (!client.commands.has(commandName)) return;
const command = client.commands.get(commandName)
//|| client.commands.find(cmd => cmd.aliases && cmd.aliases.includes(commandName));
if (command) {
//const permissionLevel = await getPermissionLevel(message.member, client, guildId);
//console.log(permissionLevel, permissions[command.name])
//if (permissionLevel >= permissions[command.name]) {
command.execute(message, args, client);
//} else {
// return message.reply("Vous n'avez pas accès à cette commande.");
// }
}
});
}
+21 -18
View File
@@ -2,22 +2,25 @@ const fs = require('fs');
const path = require('path');
module.exports = (client) => {
let count = 0;
const loadEvents = (dir) => {
fs.readdirSync(path.join(__dirname, dir)).forEach(file => {
const filePath = path.join(__dirname, dir, file);
if (fs.statSync(filePath).isDirectory()) {
loadEvents(path.join(dir, file));
} else if (file.endsWith('.js')) {
delete require.cache[require.resolve(filePath)];
const event = require(filePath);
client.on(event.name, (...args) => event.run(...args, client));
console.log(`Event ${event.name} loaded`);
count++;
}
});
}
loadEvents('../events');
console.log(`Event => ${count} chargé sur le bot`)
let count = 0;
const loadEvents = (dir) => {
fs.readdirSync(path.join(__dirname, dir)).forEach(file => {
const filePath = path.join(__dirname, dir, file);
if (fs.statSync(filePath).isDirectory()) {
loadEvents(path.join(dir, file));
} else if (file.endsWith('.js')) {
delete require.cache[require.resolve(filePath)];
const event = require(filePath);
if (typeof event.execute === 'function') {
client.on(event.name, (...args) => event.execute(...args, client));
console.log(`Event ${event.name} loaded`);
count++;
} else {
console.error(`Event ${event.name} does not have an execute method.`);
}
}
});
}
loadEvents('../events');
console.log(`Event => ${count} chargé sur le bot`)
}