Files
Emmelia-Link-Flayer-Rewrite/commands/help.js
2023-01-04 02:49:49 -06:00

32 lines
1.3 KiB
JavaScript

var libFlayer = require("../libFlayer.js");
module.exports = {
name: 'help',
description: 'Help',
execute(message) {
message.reply(
`**!help** - *Lists the available commands*
**!chat** - Queries OpenAI: *!chat what is a pizza*
**!key** - Testing remote Airtable: *!key url*
**!categories** - Displays Categories: *!categories*
**!find** - Searches the RSS Sources: *!find google*
**!get** - Retrieves Search By Index: *!get 25*
**!add** - Add a new RSS Source: *!add http://www.engadget.com/rss.xml*
**!update** - Updates all current RSS Feeds: *!update*
**!quote** - Selects a random quote: *!quote*
**!random** - Selects a random article: *!random*
**!random category** - Selects a random article by category: *!random sports*
**!search** - Instant Live Search: *!search salesforce*
**!slang** - Urban Dictionary Search: *!slang slang*
**!stock** - AlphaVantage Stock Search: *!stock IBM*
**!play** - Plays a trivia game question: *!play*
**!answer** - Answers for a question above: *!answer 1*
**!npm** - Gets NPM info from repository: *!npm axios*
**!alert** - Gets weather alerts for an area: *!alert TX*
**!calc** - Do math: *!calc 2 + 2*
**!food** - Selects a random recipe: *!food*
**!code** - Searches for code snippets: *!code python loop*
`
);
}
};