-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
'use strict'; | ||
|
||
const PREFIX = require('./index').COMMAND_PREFIX; | ||
|
||
/** | ||
* !help | ||
* @param {Object} msg Discord message | ||
*/ | ||
module.exports = (msg) => { | ||
msg.channel.send([ | ||
'```', | ||
'Commands: help, deals, wishlist, add, delete\n', | ||
'-Help: !help', | ||
' Go help yourself to some good deals.', | ||
'-Deals: !deals [game name]', | ||
' Current deals on a specific game', | ||
'-WishList: !wishlist [game names]', | ||
' Current deals on multiple games, add a \'-\' for games', | ||
'Commands: help, deals, wishlist, ignoredsellers\n', | ||
`- ${PREFIX}help`, | ||
' This command', | ||
`- ${PREFIX}deals [game name]`, | ||
' Gets current deals on a specific game', | ||
`- ${PREFIX}wishlist [game names]`, | ||
' Gets current deals on multiple games, add a \'-\' for games', | ||
' with multiple words', | ||
`- ${PREFIX}ignoredsellers`, | ||
' Lists all ignored sellers', | ||
`- ${PREFIX}ignoredsellers [add|remove] [seller]`, | ||
' Adds or removes an ignored seller', | ||
'```' | ||
].join('\n')); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters