mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 23:36:35 +02:00
21 lines
763 B
JavaScript
21 lines
763 B
JavaScript
const { EmbedBuilder } = require("discord.js")
|
|
module.exports = {
|
|
name: 'support',
|
|
aliases: ['supports'],
|
|
description: 'Affiche le support du bot',
|
|
emote: '📄',
|
|
utilisation: 'support',
|
|
category: 'utils',
|
|
|
|
async execute(message, args, client) {
|
|
const embed = new EmbedBuilder()
|
|
.setColor("#FFFFFF")
|
|
.setTitle(`Support du bot \`${client.user.username}\``)
|
|
.setThumbnail(client.user.displayAvatarURL({dynamic: true}))
|
|
.setDescription(`[support AcroDev](https://discord.gg/tVsDgSX364)\n[support swiftbot](https://discord.gg/zP7sHFpTZX)`)
|
|
.setTimestamp()
|
|
.setFooter({text: `${client.user.tag} © 2024`, iconURL: client.user.displayAvatarURL({dynamic: true})});
|
|
|
|
message.reply({ embeds: [embed] });
|
|
},
|
|
}; |