hullcss-discord-bot/SlashCommands/general/buy.js

23 lines
715 B
JavaScript
Raw Normal View History

2022-06-27 10:40:12 +01:00
const { Client, CommandInteraction, MessageEmbed } = require("discord.js");
module.exports = {
name: "buy",
description: "returns mmembership purchase link",
type: 'CHAT_INPUT',
/**
*
* @param {Client} client
* @param {CommandInteraction} interaction
* @param {String[]} args
*/
run: async (client, interaction, args) => {
const embed = new MessageEmbed()
.setTitle("Thanks for considering to become a paid member!")
.setColor('GREEN')
.setFooter(`Called By: ${interaction.user.tag}`)
.addField('You can purchase from below!','https://hulluniunion.com/shop?aid=304')
2022-06-27 10:43:29 +01:00
interaction.followUp({ embeds: [embed] });
2022-06-27 10:40:12 +01:00
},
};