Add help command
This commit is contained in:
parent
6fafd3b480
commit
9d72fbdee5
1 changed files with 12 additions and 0 deletions
|
@ -110,6 +110,18 @@ namespace RhinoReminds
|
|||
|
||||
switch (parts[0].ToLower())
|
||||
{
|
||||
case "help":
|
||||
sendChatReply(message, "Hello! I'm a reminder bot written by Starbeamrainbowlabs.");
|
||||
sendChatReply(message, "I can understand messages you send me in regular english.");
|
||||
sendChatReply(message, "I figure out what you want me to do by looking at the " +
|
||||
"first word you say, and how you want me to do it by using my AI.");
|
||||
sendChatReply(message, "I currently understand the following instructions:\n");
|
||||
sendChatReply(message, "**Remind:** Set a reminder");
|
||||
sendChatReply(message, "**List / Show:** List the reminders I have set");
|
||||
sendChatReply(message, "**Delete / Remove:** Delete a reminder by it's number (find this in the reminder list from the instruction above)");
|
||||
sendChatReply(message, "\nExample: 'Remind me to feed the cat tomorrow at 6pm'");
|
||||
break;
|
||||
|
||||
case "delete":
|
||||
case "remove":
|
||||
List<int> failed = new List<int>(),
|
||||
|
|
Loading…
Reference in a new issue