forked from JohnisonF/AdminDiscordBotTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (33 loc) · 1.43 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
const express = require('express');
const logger = require('./logger');
const { Client, Events, GatewayIntentBits, REST } = require('discord.js');
const { interactionCreate, messageCreate } = require('./eventFunctions');
const registerCommands = require('./registerCommands');
require('dotenv').config();
// Instancia a API Rest do discord.js
const rest = new REST({version: "10"}).setToken(process.env.DISCORD_TOKEN);
// Crie uma instância do cliente do Discord.js
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.DirectMessages,
],
});
client.on(Events.MessageCreate, messageCreate); // Evento de criação de mensagem Discord.js
client.on(Events.InteractionCreate, function (interaction) { interactionCreate(interaction, client) }); // Evento de interação do usuário
client.on('ready', (e) => {
registerCommands(client,rest) // Chamo minha função que registra os comandos
logger.info(`O bot '${client.user.username}' foi iniciado em ${client.guilds.cache.size} servidores com ${client.ws.ping}ms de ping.`);
client.on('raw', async (e) => {
});
});
// Inicie o cliente do Discord.js
client.login(process.env.DISCORD_TOKEN);
// Configuração do servidor Express
// const app = express();
// const port = 3000;
// // Inicia o servidor Express
// app.listen(port, () => {
// console.log(`Servidor Express rodando em http://localhost:${port}`);
// });