mirror of
				https://github.com/aydenjahola/discord-multipurpose-bot.git
				synced 2025-11-04 00:01:41 +00:00 
			
		
		
		
	I did an opsie and removed comamnds regiseteration with discord api
This commit is contained in:
		
							parent
							
								
									81805183f6
								
							
						
					
					
						commit
						b1395eb032
					
				
					 1 changed files with 36 additions and 17 deletions
				
			
		
							
								
								
									
										53
									
								
								index.js
									
									
									
									
									
								
							
							
						
						
									
										53
									
								
								index.js
									
									
									
									
									
								
							| 
						 | 
				
			
			@ -1,8 +1,14 @@
 | 
			
		|||
require("dotenv").config();
 | 
			
		||||
const {
 | 
			
		||||
  Client,
 | 
			
		||||
  GatewayIntentBits,
 | 
			
		||||
  Collection,
 | 
			
		||||
  REST,
 | 
			
		||||
  Routes,
 | 
			
		||||
} = require("discord.js");
 | 
			
		||||
const mongoose = require("mongoose");
 | 
			
		||||
const fs = require("fs");
 | 
			
		||||
const path = require("path");
 | 
			
		||||
const { Client, GatewayIntentBits, Collection } = require("discord.js");
 | 
			
		||||
const mongoose = require("mongoose");
 | 
			
		||||
 | 
			
		||||
const client = new Client({
 | 
			
		||||
  intents: [
 | 
			
		||||
| 
						 | 
				
			
			@ -12,21 +18,20 @@ const client = new Client({
 | 
			
		|||
  ],
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
const GUIlD_ID = process.env.GUILD_ID;
 | 
			
		||||
 | 
			
		||||
client.commands = new Collection();
 | 
			
		||||
 | 
			
		||||
// Load command files dynamically
 | 
			
		||||
const commandsPath = path.join(__dirname, "commands");
 | 
			
		||||
const commandFiles = fs
 | 
			
		||||
  .readdirSync(commandsPath)
 | 
			
		||||
  .readdirSync(path.join(__dirname, "commands"))
 | 
			
		||||
  .filter((file) => file.endsWith(".js"));
 | 
			
		||||
 | 
			
		||||
for (const file of commandFiles) {
 | 
			
		||||
  const filePath = path.join(commandsPath, file);
 | 
			
		||||
  const command = require(filePath);
 | 
			
		||||
  const command = require(`./commands/${file}`);
 | 
			
		||||
  client.commands.set(command.data.name, command);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
client.once("ready", () => {
 | 
			
		||||
client.once("ready", async () => {
 | 
			
		||||
  console.log(`\n==============================`);
 | 
			
		||||
  console.log(`🤖 Logged in as ${client.user.tag}`);
 | 
			
		||||
  console.log(`==============================`);
 | 
			
		||||
| 
						 | 
				
			
			@ -36,16 +41,26 @@ client.once("ready", () => {
 | 
			
		|||
  });
 | 
			
		||||
  console.log(`\n==============================\n`);
 | 
			
		||||
 | 
			
		||||
  // Set the bot's activity here
 | 
			
		||||
  client.user.setActivity({ type: "WATCHING", name: "Degenerate Gamers" });
 | 
			
		||||
  const commands = client.commands.map((cmd) => cmd.data.toJSON());
 | 
			
		||||
 | 
			
		||||
  // Database connection (MongoDB)
 | 
			
		||||
  mongoose
 | 
			
		||||
    .connect(process.env.MONGODB_URI)
 | 
			
		||||
    .then(() => console.log("✅ Connected to MongoDB"))
 | 
			
		||||
    .catch((err) => console.error("❌ Failed to connect to MongoDB", err));
 | 
			
		||||
  const rest = new REST({ version: "10" }).setToken(process.env.BOT_TOKEN);
 | 
			
		||||
 | 
			
		||||
  try {
 | 
			
		||||
    await rest.put(Routes.applicationGuildCommands(client.user.id, GUIlD_ID), {
 | 
			
		||||
      body: commands,
 | 
			
		||||
    });
 | 
			
		||||
    console.log("Successfully registered all application commands.");
 | 
			
		||||
  } catch (err) {
 | 
			
		||||
    console.error("Error registering application commands:", err);
 | 
			
		||||
  }
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
// MongoDB connection
 | 
			
		||||
mongoose
 | 
			
		||||
  .connect(process.env.MONGODB_URI)
 | 
			
		||||
  .then(() => console.log("✅ Connected to MongoDB"))
 | 
			
		||||
  .catch((err) => console.error("❌ Failed to connect to MongoDB", err));
 | 
			
		||||
 | 
			
		||||
client.on("interactionCreate", async (interaction) => {
 | 
			
		||||
  if (!interaction.isCommand()) return;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -55,8 +70,8 @@ client.on("interactionCreate", async (interaction) => {
 | 
			
		|||
 | 
			
		||||
  try {
 | 
			
		||||
    await command.execute(interaction, client);
 | 
			
		||||
  } catch (error) {
 | 
			
		||||
    console.error(error);
 | 
			
		||||
  } catch (err) {
 | 
			
		||||
    console.error(err);
 | 
			
		||||
    await interaction.reply({
 | 
			
		||||
      content: "There was an error while executing this command!",
 | 
			
		||||
      ephemeral: true,
 | 
			
		||||
| 
						 | 
				
			
			@ -64,4 +79,8 @@ client.on("interactionCreate", async (interaction) => {
 | 
			
		|||
  }
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
client.on("Error", (err) => {
 | 
			
		||||
  console.error("Client error:", err);
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
client.login(process.env.BOT_TOKEN);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue