-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
58 lines (48 loc) · 2.05 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const { Client, GatewayIntentBits, Collection, Partials } = require('discord.js');
const fs = require('fs');
const path = require('path');
require('dotenv').config();
// keyv.on('error', err => console.log('Connection Error', err));
const discordBot = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMessageReactions,
GatewayIntentBits.DirectMessages,
GatewayIntentBits.GuildVoiceStates,
],
partials: [Partials.Channel, Partials.Message],
});
discordBot.commands = new Collection();
// const commandsPath = path.join(__dirname, 'src/commands');
// const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
fs.readdirSync('./src/commands').map(dir => {
fs.readdirSync(`./src/commands/${dir}`)
.filter(file => file.endsWith('.js'))
.map(file => {
const command = require(`./src/commands/${dir}/${file}`);
if ('data' in command && 'execute' in command) {
// Set a new item in the Collection with the key as the command name and the value as the exported module
discordBot.commands.set(command.data.name, command);
} else {
console.log(
`[WARNING] The command at ./src/commands/${dir}/${file} is missing a required "data" or "execute" property.`
);
}
});
});
const eventsPath = path.join(__dirname, 'src/events');
const eventFiles = fs.readdirSync(eventsPath).filter(file => file.endsWith('.js'));
for (const file of eventFiles) {
const filePath = path.join(eventsPath, file);
const event = require(filePath);
if (event.once) {
discordBot.once(event.name, (...args) => event.execute(...args));
} else {
discordBot.on(event.name, (...args) => event.execute(...args));
}
}
discordBot.login(process.env.TOKEN);
// discordBot.on('debug', console.log).on('warn', console.log);