'use strict'; exports.commands = [ "speech" ] exports.init = function(bot){ console.log(bot); } exports.speech = { usage: "", description: 'Speech coming soon...', process: function(bot,msg,suffix){ console.log("user " + msg.member.user.username + " used !speech command"); if (suffix === "help") { msg.channel.send( { "embed": { "title": "Speech bot help", "description": '**!speech ``** : *displays top claim on speech* \n' + '**!speech ` `** : *Uploads Image URL to Spee.ch* \n' + '**NOTE : dont include spaces in name (NSFW is optional true/false, if left blank will defualt to false)** \n' + 'EXAMPLE : `!speech my-image-name https://url/to/image.png false`', "color": 7976557, "author": { "name": "COMING SOON!!", "icon_url": "https://i.imgur.com/yWf5USu.png" } } } ) } else { msg.channel.send("**COMING SOON**"); }; } }