From a7c04c54b3836d6d16378e9ec26ac8a52f217fdc Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 18 Dec 2013 18:24:18 +0100 Subject: Reaktor: add command-not-found-pattern --- config.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 1b285e4..8e7a879 100644 --- a/config.py +++ b/config.py @@ -1,5 +1,7 @@ debug = True + +# CAVEAT name should not contains regex magic name = 'kwasybot' irc_alarm_timeout = 300 @@ -25,6 +27,10 @@ irc_commands = [ default_command('rev'), default_command('uptime'), default_command('nocommand'), - { 'pattern': '^.*\\b' + name + '(?:\\b[^:].*)?$', + # command not found + { 'pattern': '^(?:' + name + '|\\*):.*', + 'argv': [ 'commands/say', '{TODO:fromname}: you are made of stupid!' ] }, + # "highlight" + { 'pattern': '\\b' + name + '\\b', 'argv': [ 'commands/say', 'I\'m famous' ] } ] -- cgit v1.2.3