X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/d6fe4b48cfb9f76ad862b6948ee1f24e892b4021..a38e8be026fa0f6e1d65be2a483c4fc79b42e7ef:/modules/foo.py diff --git a/modules/foo.py b/modules/foo.py index f2a394a..526fdff 100644 --- a/modules/foo.py +++ b/modules/foo.py @@ -1,10 +1,10 @@ -# Erebus IRC bot - Author: John Runyon +# Erebus IRC bot - Author: Erebus Team # simple module example # This file is released into the public domain; see http://unlicense.org/ # module info modinfo = { - 'author': 'John Runyon (DimeCadmium)', + 'author': 'Erebus Team', 'license': 'public domain', 'compatible': [1], # compatible module API versions 'depends': [], # other modules required to work properly? @@ -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.")