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

21 lines
616 B
JavaScript
Raw Normal View History

2022-08-26 13:33:00 +01:00
const { MessageEmbed } = require("discord.js");
2022-05-10 01:24:31 +01:00
module.exports = {
name: "buy",
2022-05-10 01:26:36 +01:00
aliases: ['paid'],
2022-05-10 01:24:31 +01:00
/**
*
* @param {Client} client
* @param {Message} message
* @param {String[]} args
*/
run: async (client, message, args) => {
2022-08-26 13:33:00 +01:00
const embed = new MessageEmbed()
2022-05-10 01:24:31 +01:00
.setTitle("Thanks for considering to become a paid member!")
.setColor('GREEN')
2022-08-26 13:41:53 +01:00
.setFooter({text: `Called By: ${message.author.tag}`})
2022-05-10 01:24:31 +01:00
.addField('You can purchase from below!','https://hulluniunion.com/shop?aid=304')
message.channel.send({ embeds: [embed] });
}
}