From af0b5d4142714e7f2d731944927412e660debcd0 Mon Sep 17 00:00:00 2001 From: kieranrobson Date: Fri, 13 May 2022 19:50:03 +0100 Subject: [PATCH] Added robotics command --- commands/general/robsoc.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 commands/general/robsoc.js diff --git a/commands/general/robsoc.js b/commands/general/robsoc.js new file mode 100644 index 0000000..6ac2115 --- /dev/null +++ b/commands/general/robsoc.js @@ -0,0 +1,21 @@ +const discord = require("discord.js"); + +module.exports = { + name: "robotics", + aliases: ['robsoc'], + /** + * + * @param {Client} client + * @param {Message} message + * @param {String[]} args + */ + run: async (client, message, args) => { + const embed = new discord.MessageEmbed() + .setTitle("Robotics Society") + .setColor('BLUE') + .setFooter(`Called By: ${message.author.tag}`) + .setDescription('Robotics Society aee a society where you can gain skills in building an actual robot, or get help with your assignments or exams, but they also run social night where they go out to do stuff.') + .addField('You can join them from below!','https://discord.gg/cMP5CavnK4') + message.channel.send({ embeds: [embed] }); + } +} \ No newline at end of file