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

22 lines
906 B
JavaScript
Raw Normal View History

2022-08-26 13:33:00 +01:00
const { MessageEmbed } = require("discord.js");
2022-05-13 19:46:28 +01:00
module.exports = {
name: "freeside",
aliases: ['fs'],
/**
*
* @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-13 19:46:28 +01:00
.setTitle("Freeside")
.setColor('ORANGE')
2022-07-01 18:46:51 +01:00
.setFooter({ text: `Called By: ${message.author.tag}`})
2022-05-13 19:46:28 +01:00
.setDescription('Freeside is the student run and maintained linux cluster within the University Of Hull Computer Science Department providing Linux administration experience, mentoring and technical advice alongside other peer-led support. It is completely free to all students to join, irrespective of degree pathway.')
.addField('You can join them from below!','https://discord.freeside.co.uk')
2022-05-13 19:46:28 +01:00
message.channel.send({ embeds: [embed] });
}
}