const { EmbedBuilder, SlashCommandBuilder } = require('discord.js'); // module.exports = { data: new SlashCommandBuilder() .setName('report').setDescription('Report a message') .addChannelOption(option=>option.setName('channel').setDescription('Channel where the message was sent').setRequired(true)) .addStringOption(option=>option.setName('messageid').setDescription('MessageID').setRequired(true)) .setDMPermission(false), async execute(interaction) { await interaction.deferReply({ephemeral: true}); const wait = require('node:timers/promises').setTimeout; await wait(3000); const channel = interaction.options.getChannel('channel'); const messageid = interaction.options.getString('messageid'); const message = channel.messages.cache.get(messageid); const report = new EmbedBuilder() .setColor(0xff0000) .setAuthor({name: `Author: ${message.author.username}`, iconURL: `${message.author.displayAvatarURL({size:32})}`}) .setTitle(`Reported Message by ${interaction.user.username}`) .setDescription(`${message.content}`) .setFooter({text: `MessageID: ${messageid}, ChannelID: ${channel.id}`}) .setTimestamp(); const rep = interaction.client.channels.cache.get('1156574538499379220'); rep.send({embeds: [report]}); return interaction.editReply({ content: 'Reported successfully!', ephemeral: true }); } }