mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-22 16:55:55 +00:00
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName("help")
|
|
.setDescription("Lists all available commands"),
|
|
|
|
async execute(interaction, client) {
|
|
try {
|
|
const modRoleId = process.env.MOD_ROLE_ID;
|
|
const isMod = interaction.member.roles.cache.has(modRoleId);
|
|
|
|
const serverName = interaction.guild.name;
|
|
|
|
const helpEmbed = new EmbedBuilder()
|
|
.setColor("#0099ff")
|
|
.setTitle("Available Commands")
|
|
.setDescription("Here are all the available commands:")
|
|
.setTimestamp()
|
|
.setFooter({
|
|
text: `${serverName}`,
|
|
iconURL: client.user.displayAvatarURL(),
|
|
});
|
|
|
|
// Add general commands
|
|
client.commands.forEach((command) => {
|
|
if (!command.isModOnly) {
|
|
helpEmbed.addFields({
|
|
name: `/${command.data.name}`,
|
|
value: command.data.description,
|
|
inline: false,
|
|
});
|
|
}
|
|
});
|
|
|
|
// Add mod-only commands if the user is a mod
|
|
if (isMod) {
|
|
client.commands.forEach((command) => {
|
|
if (command.isModOnly) {
|
|
helpEmbed.addFields({
|
|
name: `/${command.data.name}`,
|
|
value: command.data.description + " (Mods only)",
|
|
inline: false,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
await interaction.reply({
|
|
embeds: [helpEmbed],
|
|
});
|
|
} catch (error) {
|
|
console.error("Error executing the help command:", error);
|
|
await interaction.reply({
|
|
content: "There was an error while executing this command!",
|
|
ephemeral: true,
|
|
});
|
|
}
|
|
},
|
|
};
|