0% found this document useful (0 votes)
26 views1 page

Verify

This document outlines a Discord bot command named 'verify' that allows users to verify themselves. The command is designed for administrators and includes a button for users to click to initiate the verification process. An embedded message is sent with the command, featuring a title and an image.

Uploaded by

boredmanrng
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views1 page

Verify

This document outlines a Discord bot command named 'verify' that allows users to verify themselves. The command is designed for administrators and includes a button for users to click to initiate the verification process. An embedded message is sent with the command, featuring a title and an image.

Uploaded by

boredmanrng
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

const { ChatInputCommandInteraction, SlashCommandBuilder, PermissionFlagsBits,

ActionRowBuilder, ButtonBuilder, ButtonStyle, EmbedBuilder } =


require("[Link]");

[Link] = {
developer: true,
data: new SlashCommandBuilder()
.setName("verify")
.setDescription("Comando para verificarse")
.setDefaultMemberPermissions([Link]),

/**
*
* @param {ChatInputCommandInteraction} interaction
*/

async execute(interaction) {

const button = new ActionRowBuilder().addComponents(


new ButtonBuilder()
.setCustomId(`ver`).setLabel(`Verify`).setStyle([Link]),
);

const embed = new EmbedBuilder()


.setTitle(`Verifícate pulsando el botón`)
.setImage(`[Link]
1008457294553563167/1057310773782773820/[Link]`)

await [Link]({embeds: [embed], components: [button] });


},
};

You might also like