diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-06 16:24:18 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-06 16:24:18 +0100 |
commit | 8a60dd69db40b829f3caaf2a521cb6f9d631edee (patch) | |
tree | 7b528d99369049261d57ab258d1970342ab12202 | |
parent | 2b08dc478e49fb8fd4d476e29abadcc29320cc32 (diff) | |
download | furrybot-discord-8a60dd69db40b829f3caaf2a521cb6f9d631edee.tar.xz |
Add info command
-rw-r--r-- | basic.js | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,6 +1,14 @@ const common = require("./common.js") module.exports = { + info: { + help: "Display info about furrybot", + func: msg => msg.reply("**furrybot** _by Elias Fleckenstein_\n\n" + + "Furrybot for Discord: <https://github.com/EliasFleckenstein03/furrybot-discord>\n" + + "Original Furrybot Dragonfire CSM: <https://github.com/EliasFleckenstein03/furrybot>\n" + + "Custom Google Images API: <https://www.npmjs.com/package/free-google-images>" + ) + }, help: { params: "[<command>]", help: "Display help for a commands or show list of available commands", |