From 3664c0412e423c921d6920dfa67f05fed8dd0b12 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Sun, 20 Sep 2020 04:32:40 +0000 Subject: [PATCH] Add help command It may just point to a page, but that's okay. The page has the help you need. --- commands/help.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 commands/help.py diff --git a/commands/help.py b/commands/help.py new file mode 100644 index 0000000..83535ab --- /dev/null +++ b/commands/help.py @@ -0,0 +1,5 @@ +import plugin + +@plugin.command("help") +def help(bot,channel,nick,*args): + bot.say(channel,nick+": https://khuxkm.tilde.team/cosmicbot_help.php")