]> jfr.im git - erebus.git/blame_incremental - modules/foo.py
fix formatting of CBEXC msg
[erebus.git] / modules / foo.py
... / ...
CommitLineData
1# Erebus IRC bot - Author: Erebus Team
2# simple module example
3# This file is released into the public domain; see http://unlicense.org/
4
5# module info
6modinfo = {
7 'author': 'Erebus Team',
8 'license': 'public domain',
9 'compatible': [1], # compatible module API versions
10 'depends': [], # other modules required to work properly?
11}
12
13# preamble
14import modlib
15lib = modlib.modlib(__name__)
16modstart = lib.modstart
17modstop = lib.modstop
18
19# module code
20@lib.hook(needchan=False) #since no cmd= is provided, defaults to function name
21@lib.help('<args>', 'tells you what you said')
22def test(bot, user, chan, realtarget, *args):
23 if chan is not None and realtarget == chan.name: replyto = chan
24 else: replyto = user
25
26 bot.msg(replyto, "You said: %s" % (' '.join([str(arg) for arg in args])))
27
28@lib.hook(('foo', 'bar'), needchan=False) #hooks !foo and !bar as aliases
29@lib.help(None, 'replies with nonsense.', "it's a very non-sensical command", "more lines")
30def foobar(bot, user, chan, realtarget, *args):
31 bot.msg(user, "Foo bar baz.")