Advertisement
Guest User

communityevent.js

a guest
Oct 18th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Discord = require("discord.js")
  2. /**
  3.  * @param {Discord.ChatInputCommandInteraction} interaction
  4.  */
  5. module.exports.run = (interaction) => {
  6.   const Embed = new Discord.EmbedBuilder()
  7.   Embed.setTitle(`Event`)
  8.   Embed.setDescription(
  9.     `This should not be deleted. This message will get edited and this already works.`
  10.   )
  11.  
  12.   Embed.setColor("#0098af")
  13.   const cancel = new Discord.ButtonBuilder()
  14.   cancel.setLabel("Cancel")
  15.   //prettier-ignore
  16.   cancel.setCustomId("cancelevent")
  17.   cancel.setStyle(Discord.ButtonStyle.Danger)
  18.   const actionRow = new Discord.ActionRowBuilder()
  19.   actionRow.addComponents(cancel)
  20.   interaction.reply({
  21.     embeds: [Embed],
  22.     components: [actionRow],
  23.   })
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement