Added linktree command

imgbot
kieranrobson 2022-05-10 01:41:50 +01:00
parent d4666d19eb
commit 53ffbf3d2b
2 changed files with 24 additions and 1 deletions

View File

@ -38,7 +38,8 @@ module.exports = {
.setTitle("General Comamnds")
.setColor('GREEN')
.addField('-link', 'Sends a link to purchase membership')
.addField('-buy', 'Sends a link to purchase membership')
.addField('-links', 'Get all the links')
message.channel.send({ embeds: [embed] });

View File

@ -0,0 +1,22 @@
const discord = require("discord.js");
module.exports = {
name: "links",
aliases: ['p'],
/**
*
* @param {Client} client
* @param {Message} message
* @param {String[]} args
*/
run: async (client, message, args) => {
const embed = new discord.MessageEmbed()
.setTitle("Links!")
.setColor('GREEN')
.setFooter(`Called By: ${message.author.tag}`)
.addField('Find us here:','https://hullcss.org/links')
message.channel.send({ embeds: [embed] });
},
};