2022-01-04 02:18:28 +05:00
|
|
|
require("./helpers/extenders");
|
|
|
|
|
2022-07-31 17:08:00 +05:00
|
|
|
const { GatewayIntentBits } = require("discord.js"),
|
2023-11-05 16:03:23 +05:00
|
|
|
Client = require("./base/Client");
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
const client = new Client({
|
2024-02-07 21:10:39 +05:00
|
|
|
intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildModeration, GatewayIntentBits.GuildEmojisAndStickers, GatewayIntentBits.GuildIntegrations, GatewayIntentBits.GuildInvites, GatewayIntentBits.GuildVoiceStates, GatewayIntentBits.GuildPresences, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMessageReactions, GatewayIntentBits.GuildMessageTyping, GatewayIntentBits.MessageContent, GatewayIntentBits.DirectMessageTyping, GatewayIntentBits.DirectMessages, GatewayIntentBits.DirectMessageReactions ],
|
2022-12-15 21:02:38 +05:00
|
|
|
allowedMentions: { parse: ["everyone", "roles", "users"] },
|
2022-01-03 23:20:33 +05:00
|
|
|
});
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2022-07-23 17:14:42 +05:00
|
|
|
(async () => {
|
2023-06-27 19:01:39 +05:00
|
|
|
console.time("botReady");
|
|
|
|
|
2022-07-26 17:20:10 +05:00
|
|
|
client.translations = await require("./helpers/languages")();
|
|
|
|
|
2022-07-23 17:14:42 +05:00
|
|
|
await client.loadEvents("../events");
|
2022-07-26 19:46:32 +05:00
|
|
|
await client.loadCommands("../commands");
|
2022-07-23 17:14:42 +05:00
|
|
|
await client.init();
|
|
|
|
})();
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2024-02-06 21:45:53 +05:00
|
|
|
client
|
|
|
|
.on("disconnect", () => client.logger.warn("Bot is disconnecting..."))
|
|
|
|
.on("reconnecting", () => client.logger.warn("Bot reconnecting..."))
|
2024-04-29 15:57:02 +05:00
|
|
|
.on("warn", warn => console.log(warn))
|
|
|
|
.on("error", e => console.log(e));
|
2024-02-06 21:45:53 +05:00
|
|
|
|
|
|
|
process
|
|
|
|
.on("unhandledRejection", e => console.log(e))
|
|
|
|
.on("uncaughtException", e => console.log(e));
|