-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
32 lines (22 loc) · 833 Bytes
/
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
//@ts-check
/**
* @description Este bot no tendrá ningún tipo de prefijo, ya que utilizará la nueva utilidad implementada por Discord llamada
* "slash-commands", osea, comandos a los que podrás acceder escribiendo "/" en algun canal de texto.
*/
const { Client } = require('discord.js');
const { ShompiFlen } = require('./tokens');
const fs = require('fs');
const client = new Client();
const commandFiles = fs.readdirSync('./Commands').filter(file => file.endsWith(".js"));
for (const file of commandFiles) {
const command = require(`./Commands/${file}`);
client.commands.set(command.name, command);
}
client.on("message", (message) => {
if (message.author.bot) return;
const { channel } = message;
});
client.on("ready", async () => {
console.log("ShompiFlen está listo!");
});
client.login(ShompiFlen);