Files
Emmelia-Link-Flayer-Rewrite/commands/help.js
2021-12-03 18:23:25 -06:00

18 lines
544 B
JavaScript

var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'help',
description: 'Help',
execute(message) {
message.reply(
`!help - Lists the available commands
**!search** - Searches the RSS Sources: *!search google*
**!get**- Retrieves Search By Index: *!get 25*
**!add** - Add a new RSS Source Feed dynamically: *!add http://www.engadget.com/rss.xml*
**!update** - Updates all current RSS Feeds: *!update*
**!quote** - Selects a random quote: *!update*
**!exit** - Force kills bot: *!exit*
`
);
}
};