From 9b1255ccbd690fbc62a7440c94675bd2a073c3c0 Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Fri, 26 Feb 2021 20:51:43 -0700 Subject: [PATCH] add support server command --- commands/supportserver.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 commands/supportserver.js diff --git a/commands/supportserver.js b/commands/supportserver.js new file mode 100644 index 0000000..e68e4a1 --- /dev/null +++ b/commands/supportserver.js @@ -0,0 +1,23 @@ +const Discord = require('discord.js'); + +module.exports = { + name: "supportserver", + aliases: ['helpserver'], + meta: { + category: 'Misc', + description: "Get an invite to Natsuki's support server!", + syntax: '`supportserver`', + extra: null + }, + help: "Get an invite to Natsuki's support server!", + async execute(message, msg, args, cmd, prefix, mention, client) { + return message.channel.send(new Discord.MessageEmbed() + .setTitle("Sure thing!") + .setThumbnail(client.user.avatarURL({size: 2048})) + .setDescription("Join the server with [this link](https://discord.gg/u9c2uD24wB)!\n\n`->` Here you can talk to the devs, suggest features, hang out with the community, get update alerts, report bugs/issues and get help, or just stop and say hi!") + .setColor("c375f0") + .setFooter("Natsuki") + .setTimestamp() + ); + } +}; \ No newline at end of file