You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
#!/usr/bin/env node
|
|
|
|
import fs from 'node:fs';
|
|
import { Client, Collection, Intents } from 'discord.js';
|
|
import { token } from './helpers/env';
|
|
import log from './helpers/log';
|
|
|
|
const client = new Client({
|
|
intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_MESSAGE_REACTIONS, Intents.FLAGS.GUILD_MEMBERS, Intents.FLAGS.DIRECT_MESSAGES, Intents.FLAGS.DIRECT_MESSAGE_REACTIONS],
|
|
});
|
|
|
|
client['commands'] = new Collection();
|
|
|
|
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
|
|
const eventFiles = fs.readdirSync('./events').filter(file => file.endsWith('.js'));
|
|
|
|
for (const file of commandFiles) {
|
|
import(`./commands/${file}`)
|
|
.then(command => {
|
|
client['commands'].set(command.data.name, command);
|
|
log({ logger: 'command', content: `Registered command ${file}!`, level: 'info' });
|
|
});
|
|
}
|
|
|
|
for (const file of eventFiles) {
|
|
import(`./events/${file}`)
|
|
.then(event => {
|
|
if (event.once) {
|
|
client.once(event.name, (...args) => event.execute(...args));
|
|
}
|
|
else {
|
|
client.on(event.name, (...args) => event.execute(...args));
|
|
}
|
|
log({ logger: 'event', content: `Registered event ${file}!`, level: 'info' });
|
|
});
|
|
}
|
|
|
|
client.login(token);
|
|
|