discord-bot-template/main.js

48 lines
1.4 KiB
JavaScript
Raw Normal View History

2023-01-21 04:35:03 +00:00
/* eslint-disable no-case-declarations */
/* eslint-disable indent */
// dotenv for handling environment variables
const dotenv = require('dotenv');
dotenv.config();
2023-02-11 01:15:23 +00:00
const token = process.env.TOKEN;;
2023-01-21 04:35:03 +00:00
// Discord.JS
2023-02-13 04:51:17 +00:00
const { Client, GatewayIntentBits } = require('discord.js');
2023-01-21 04:35:03 +00:00
const client = new Client({
intents: [
2023-02-13 04:51:17 +00:00
GatewayIntentBits.Guilds
]
2023-01-21 04:35:03 +00:00
});
// Various imports
const fn = require('./modules/functions.js');
const strings = require('./data/strings.json');
2023-02-13 04:51:17 +00:00
const debugMode = process.env.DEBUG;
2023-02-11 01:15:23 +00:00
const statusChannelId = process.env.STATUSCHANNELID
2023-01-21 04:35:03 +00:00
client.once('ready', () => {
2023-02-13 04:51:17 +00:00
fn.collectionBuilders.slashCommands(client);
2023-01-21 04:35:03 +00:00
console.log('Ready!');
2023-02-13 04:51:17 +00:00
// client.channels.fetch(statusChannelId).then(channel => {
// channel.send(`${new Date().toISOString()} -- Ready`).catch(e => console.error(e));
// });
2023-01-21 04:35:03 +00:00
});
// slash-commands
client.on('interactionCreate', async interaction => {
if (interaction.isCommand()) {
const { commandName } = interaction;
if (client.slashCommands.has(commandName)) {
2023-02-13 04:51:17 +00:00
client.slashCommands.get(commandName).execute(interaction).catch(e => console.error(e));
2023-01-21 04:35:03 +00:00
} else {
2023-02-13 04:51:17 +00:00
interaction.reply('Sorry, I don\'t have access to that command.').catch(e => console.error(e));
2023-01-21 04:35:03 +00:00
console.error('Slash command attempted to run but not found: /' + commandName);
}
}
});
2023-02-13 04:51:17 +00:00
process.on('uncaughtException', err => {
console.error(err);
});
2023-01-21 04:35:03 +00:00
client.login(token);