Skip to content

Commit 076095a

Browse files
Add that invite cmd so peeps can add to them fine fine servers
1 parent 0ab4af1 commit 076095a

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

src/app/cmds/General/invite.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
name: "invite",
3+
description: "Add me to yo server!",
4+
guildOnly: false,
5+
authorizedGuilds: [],
6+
hidden: false,
7+
permissions: ["DEFAULT"],
8+
cooldown: 2,
9+
aliases: [],
10+
syntax: [],
11+
execute: async(app, message, args) => {
12+
return app.functions.msgHandler(message, {
13+
embeds: [{
14+
title: app.config.system.emotes.information + " Invite",
15+
color: app.config.system.embedColors.green,
16+
fields: [
17+
{ name: "OwO? New server?!?", value: `Aw heck yeah!! Add me and become one of the ${app.client.guilds.cache.size} servers using TheCodingBot!`},
18+
{ name: "Add me to dat server!", value: "Add me via [Discord](https://discord.com/oauth2/authorize?scope=bot&client_id=438532019924893707&permissions=8)"},
19+
{ name: "...is something wrong..?", value: "Join the [TMC Discord](https://discord.gg/HdKeWtV) or message <@222073294419918848>!" },
20+
]}]
21+
})
22+
}}

0 commit comments

Comments
 (0)