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

21 lines
607 B
JavaScript
Raw Normal View History

2022-05-10 01:24:31 +01:00
const discord = require("discord.js");
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) => {
const embed = new discord.MessageEmbed()
.setTitle("Thanks for considering to become a paid member!")
.setColor('GREEN')
.setFooter(`Called By: ${message.author.tag}`)
.addField('You can purchase from below!','https://hulluniunion.com/shop?aid=304')
message.channel.send({ embeds: [embed] });
}
}