diff options
| author | Unknown <Alee14498@gmail.com> | 2017-10-28 10:26:58 -0400 |
|---|---|---|
| committer | Unknown <Alee14498@gmail.com> | 2017-10-28 10:26:58 -0400 |
| commit | 5b41f1caa036fd7caa6c02f494ac1884a07c2d81 (patch) | |
| tree | 6eee5768fc0ee3cffd0451bc44789df03db41592 /bot.js | |
| parent | 90a4bfae39cc1c7ea6780c17379a6b0eded1c63f (diff) | |
| download | AstralQuote-ATC-5b41f1caa036fd7caa6c02f494ac1884a07c2d81.tar.gz AstralQuote-ATC-5b41f1caa036fd7caa6c02f494ac1884a07c2d81.tar.bz2 AstralQuote-ATC-5b41f1caa036fd7caa6c02f494ac1884a07c2d81.zip | |
Laying the foundations of this command
Diffstat (limited to 'bot.js')
| -rw-r--r-- | bot.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -274,7 +274,7 @@ client.on('message', message => { .setThumbnail('https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048') .setColor("#BF6FDB") .addField("- General Commands", "ping\npong\ninvitebot\ncontribute\nreboot\npoweroff", true) - .addField("- Quote Commands", "quoteoftheday\nforcequote", true) + .addField("- Quote Commands", "quoteoftheday\nforcequote\nsuggestaquote", true) .setFooter("AstrelQuact Copyright 2017. This was made by TheRandomMelon and vicr123 and modified by Alee14.") message.channel.send(embed); } else if (message.content === '!oldhelp') { @@ -327,6 +327,10 @@ client.on('message', message => { embed.setURL("https://discordapp.com/oauth2/authorize?client_id=373224323529310208&scope=bot&permissions=314368"); message.channel.send(embed) + } else if (message.content === "!suggestaquote") { + embed.setAuthor("AstrelQuact", "https://cdn.discordapp.com/avatars/373224323529310208/10311b6f6bb439681480b0ced7efaf66.png?size=2048"); + embed.setColor("#BF6FDB"); + embed.setDescription("This feature is coming soon!"); } else if (message.content.startsWith("!")) { deleteOriginalMessage = false; |
