Add help command

This commit is contained in:
Starbeamrainbowlabs 2018-11-17 18:07:02 +00:00
parent 6fafd3b480
commit 9d72fbdee5
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 12 additions and 0 deletions

View File

@ -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>(),