Skip to content
Snippets Groups Projects
Commit aa6de0ee authored by Øystein Kristoffer Tveit's avatar Øystein Kristoffer Tveit :beginner:
Browse files

Add help command

parent 7c4837a8
No related branches found
No related tags found
No related merge requests found
......@@ -26,3 +26,20 @@ module BotCommands =
| true -> ctx.RespondAsync "This is now my channel :)" |> ignore
| false -> ctx.RespondAsync "This is now your channel (:" |> ignore
} |> Async.StartAsTask :> Task
[<Command("help")>]
member public self.help(ctx:CommandContext) =
async {
ctx.RespondAsync
"""
Hello! This is the WikiMathBot
Here are some commands you can use:
!echo <something> - Test whether I'm awake or not
!help - Display this message
!hi - Same as !echo
!toggle - Toggle my notifications in this channel
"""
|> ignore
}
|> Async.StartAsTask :> Task
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment