Add !botlist and !rollcall

This commit is contained in:
jesopo 2019-05-12 22:37:08 +01:00
parent d0573706e5
commit 8885b407ea

10
modules/botlist.py Normal file
View file

@ -0,0 +1,10 @@
from src import ModuleManager, utils
COMMANDS = ["!botlist", "!rollcall"]
MESSAGE = "Hi! I'm BitBot (https://git.io/bitbot) "
class Module(ModuleManager.BaseModule):
@utils.hook("received.message.channel")
def channel_message(self, event):
if event["message"].strip() in COMMANDS:
event["channel"].send_message(MESSAGE)