summaryrefslogtreecommitdiffstats
path: root/Reaktor/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'Reaktor/config.py')
-rw-r--r--Reaktor/config.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/Reaktor/config.py b/Reaktor/config.py
index 88701379..db4c8a3e 100644
--- a/Reaktor/config.py
+++ b/Reaktor/config.py
@@ -32,6 +32,12 @@ public_commands = [
default_command('rev'),
default_command('uptime'),
default_command('nocommand'),
+ {
+ 'capname': 'tell',
+ 'pattern': '^' + name + ':\\s*' + 'tell' + '\\s*(?:\\s+(?P<args>.*))?$',
+ 'argv': [ 'commands/tell-on_privmsg' ],
+ 'env': { 'state_file': workdir + '/tell.txt' }
+ },
# command not found
{ 'pattern': '^(?:' + name + '|\\*):.*',
'argv': [ 'commands/respond','You are made of stupid!'] },
@@ -46,3 +52,11 @@ public_commands = [
commands = [
default_command('reload')
]
+
+on_join = [
+ {
+ 'capname': 'tell',
+ 'argv': [ 'commands/tell-on_join' ],
+ 'env': { 'state_file': workdir + '/tell.txt' }
+ }
+]