-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.js
37 lines (32 loc) · 1.11 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
require("dotenv").config();//Loading .env
const fs = require("fs");
const { Collection, Client } = require("discord.js");
const client = new Client();//Making a discord bot client
client.commands = new Collection();//Making client.commands as a Discord.js Collection
client.queue = new Map()
client.config = {
prefix: process.env.PREFIX
}
//Loading Events
fs.readdir(__dirname + "/events/", (err, files) => {
if (err) return console.error(err);
files.forEach((file) => {
const event = require(__dirname + `/events/${file}`);
let eventName = file.split(".")[0];
client.on(eventName, event.bind(null, client));
console.log("Loading Event: "+eventName)
});
});
//Loading Commands
fs.readdir("./commands/", (err, files) => {
if (err) return console.error(err);
files.forEach((file) => {
if (!file.endsWith(".js")) return;
let props = require(`./commands/${file}`);
let commandName = file.split(".")[0];
client.commands.set(commandName, props);
console.log("Loading Command: "+commandName)
});
});
//Logging in to discord
client.login(process.env.TOKEN)