X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/e659feb5010053f05070be17ecfef36e9ee138ba..a38e8be026fa0f6e1d65be2a483c4fc79b42e7ef:/modules/foo.py diff --git a/modules/foo.py b/modules/foo.py index 8063afb..526fdff 100644 --- a/modules/foo.py +++ b/modules/foo.py @@ -17,9 +17,15 @@ modstart = lib.modstart modstop = lib.modstop # module code -@lib.hook('test', needchan=False) -def cmd_gtest(bot, user, chan, realtarget, *args): - if chan is not None: replyto = chan +@lib.hook(needchan=False) #since no cmd= is provided, defaults to function name +@lib.help('', 'tells you what you said') +def test(bot, user, chan, realtarget, *args): + if chan is not None and realtarget == chan.name: replyto = chan else: replyto = user bot.msg(replyto, "You said: %s" % (' '.join([str(arg) for arg in args]))) + +@lib.hook(('foo', 'bar'), needchan=False) #hooks !foo and !bar as aliases +@lib.help(None, 'replies with nonsense.', cmd=('foo', 'bar')) +def foobar(bot, user, chan, realtarget, *args): + bot.msg(user, "Foo bar baz.")