-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
28 lines (24 loc) · 1.03 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
const Discord = require('discord.js')
const client = new Discord.Client()
const fs = require('fs')
const path = require('path')
const { token } = require('./config')
client.commands = new Discord.Collection()
client.collectors = new Discord.Collection()
const commandFiles = fs.readdirSync('./commands/').filter(file => file.endsWith('.js'))
for(const file of commandFiles) {
const command = require(path.join(__dirname, "commands", file))
client.commands.set(command.name, command)
console.log(`Commande chargée : ${command.name ? command.name : "Pas de nom"}`)
}
const eventFiles = fs.readdirSync(`./events/`).filter(file => file.endsWith('.js'))
for(const file of eventFiles) {
const event = require(path.join(__dirname, "events", file))
if(event.once) {
client.once(event.name, (...args) => event.execute(...args, client))
} else {
client.on(event.name, (...args) => event.execute(...args, client))
}
console.log(`Event chargé : ${event.name}`)
}
client.login(token)