const { SlashCommandBuilder, EmbedBuilder, PermissionFlagsBits } = require("discord.js"); module.exports = { data: new SlashCommandBuilder() .setName("announcement") .setDescription("Cria ou edita um anuncio") .addSubcommand(subcommand => subcommand.setName("create") .setDescription("Cria um anuncio") .addStringOption(option => option.setName("mensagem") .setDescription("Mensagem do anuncio.") .setRequired(true) ) .addChannelOption(option => option.setName("canal") .setDescription("Canal para anunciar.") .setRequired(true) )) .addSubcommand(subcommand => subcommand.setName("edit") .setDescription("Cria um anuncio") .addStringOption(option => option.setName("message") .setDescription("Nova mensagem do anuncio.") .setRequired(true) ) .addStringOption(option => option.setName("id") .setDescription("Id da mensagem que sera editada.") .setRequired(true) )), async execute(interaction) { const { channel, options } = interaction; const subcommand = options.getSubcommand(); const canal = interaction.options.getChannel("canal") const message = interaction.options.getString("mensagem"); const messageId = interaction.options.getString("id"); const newmessage = interaction.options.getString("message"); const edit = new EmbedBuilder() .setTitle('Anuncio editado com sucesso.') .setColor(0x080000) .setAuthor({ name: 'Sunflower-Moderation', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }); const success = new EmbedBuilder() .setTitle('Anuncio enviado com sucesso.') .setColor(0x080000) .setAuthor({ name: 'Sunflower-Moderation', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }); const embed = new EmbedBuilder() .setColor(0x080000) .setAuthor({ name: 'Sunflower-Moderation', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }) try { switch (subcommand) { case "create": const anuncio = new EmbedBuilder() .setTitle('📢Anuncio!') .setDescription(`\`${message}\``) .setColor(0x080000) .setAuthor({ name: 'Sunflower-Moderation', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }); interaction.reply({ embeds: [success], ephemeral: true }) canal.send({ content: "@everyone", embeds: [anuncio] }); case "edit": const editedMessage = await interaction.channel.messages.fetch(messageId); const editedEmbed = new EmbedBuilder() .setTitle('📢Anuncio!') .setDescription(`\`${newmessage}\``) .setColor(0x080000) .setAuthor({ name: 'Sunflower-Moderation', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }); interaction.reply({ embeds: [edit], ephemeral: true }) return editedMessage.edit({ embeds: [editedEmbed] }); } } catch (err) { console.log(err); embed.setColor("Red").setTitle("⛔│ Algo deu errado...").setDescription("Erro detectado").setAuthor({ name: 'Sunflower-Error', iconURL: 'https://i.imgur.com/Qy2XpGi.png' }) return interaction.reply({ embeds: [embed], ephemeral: true }); } } }