-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
53 lines (45 loc) · 1.36 KB
/
index.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
// THIS FILE IS FOR RUNNING THE BOT
// Require the fs module
const fs = require('node:fs');
// Require the path module
const path = require('node:path');
// Require the necessary discord.js classes
const { Client, Events, GatewayIntentBits, PresenceUpdateStatus } = require('discord.js');
// Require dotenv to load the .env file
const dotenv = require('dotenv');
// Load the .env file
dotenv.config();
// Import the token from the .env file
const { token } = process.env.DISCORD_TOKEN;
// Create a new client instance
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages
],
presence: {
activities: [
{
name: 'the server come to life!',
type: 3,
},
],
status: PresenceUpdateStatus.Online,
},
});
// Define the events variables
const eventsPath = path.join(__dirname, '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) {
// console.log('\u001b[1;35m' + event.name + '\u001b[0m')
client.once(event.name, (...args) => event.execute(...args));
} else {
// console.log('\u001b[1;35m' + event.name + '\u001b[0m')
client.on(event.name, (...args) => event.execute(...args));
}
}
// Log in to Discord with client token
client.login(token);