2003-03-27 07:34:48 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
|
|
|
Miscellaneous commands.
|
|
|
|
"""
|
|
|
|
|
2003-10-05 14:47:19 +02:00
|
|
|
import fix
|
2003-09-07 07:26:18 +02:00
|
|
|
|
2003-03-27 07:34:48 +01:00
|
|
|
import os
|
2003-09-25 10:14:46 +02:00
|
|
|
import sys
|
2003-09-07 07:26:18 +02:00
|
|
|
import getopt
|
2003-11-15 04:21:34 +01:00
|
|
|
from itertools import imap, ifilter
|
2003-03-27 07:34:48 +01:00
|
|
|
|
|
|
|
import conf
|
|
|
|
import debug
|
2003-09-07 07:26:18 +02:00
|
|
|
import utils
|
2003-10-28 01:22:15 +01:00
|
|
|
import irclib
|
2003-09-07 07:26:18 +02:00
|
|
|
import ircmsgs
|
|
|
|
import ircutils
|
2003-03-27 07:34:48 +01:00
|
|
|
import privmsgs
|
|
|
|
import callbacks
|
|
|
|
|
2003-10-21 08:03:57 +02:00
|
|
|
class Misc(callbacks.Privmsg):
|
2003-10-28 06:03:56 +01:00
|
|
|
priority = sys.maxint
|
2003-10-28 01:22:15 +01:00
|
|
|
def invalidCommand(self, irc, msg, tokens):
|
2003-10-30 00:40:14 +01:00
|
|
|
#debug.printf('Misc.invalidCommand called')
|
2003-10-28 01:22:15 +01:00
|
|
|
if conf.replyWhenNotCommand:
|
2003-10-30 00:02:27 +01:00
|
|
|
command = tokens and tokens[0] or ''
|
|
|
|
irc.error(msg, '%r is not a valid command.' % command)
|
2003-10-28 01:22:15 +01:00
|
|
|
else:
|
|
|
|
if not isinstance(irc.irc, irclib.Irc):
|
|
|
|
irc.reply(msg, '[%s]' % ' '.join(tokens))
|
2003-09-10 10:32:20 +02:00
|
|
|
|
2003-03-27 07:34:48 +01:00
|
|
|
def list(self, irc, msg, args):
|
2003-09-22 12:22:06 +02:00
|
|
|
"""[--private] [<module name>]
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-09-07 06:05:34 +02:00
|
|
|
Lists the commands available in the given plugin. If no plugin is
|
2003-09-22 12:22:06 +02:00
|
|
|
given, lists the public plugins available. If --private is given,
|
|
|
|
lists all commands, not just the public ones.
|
2003-03-27 07:34:48 +01:00
|
|
|
"""
|
2003-09-22 12:22:06 +02:00
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['private'])
|
2003-09-22 13:43:35 +02:00
|
|
|
evenPrivate = False
|
2003-09-22 12:22:06 +02:00
|
|
|
for (option, argument) in optlist:
|
|
|
|
if option == '--private':
|
|
|
|
evenPrivate = True
|
2003-11-11 14:20:06 +01:00
|
|
|
name = privmsgs.getArgs(rest, required=0, optional=1)
|
2003-03-27 07:34:48 +01:00
|
|
|
name = name.lower()
|
|
|
|
if not name:
|
2003-04-19 23:41:23 +02:00
|
|
|
names = [cb.name() for cb in irc.callbacks
|
2003-09-22 13:43:35 +02:00
|
|
|
if evenPrivate or (hasattr(cb, 'public') and cb.public)]
|
2003-03-28 08:23:12 +01:00
|
|
|
names.sort()
|
2003-03-27 07:34:48 +01:00
|
|
|
irc.reply(msg, ', '.join(names))
|
|
|
|
else:
|
|
|
|
for cb in irc.callbacks:
|
|
|
|
cls = cb.__class__
|
2003-10-20 07:56:14 +02:00
|
|
|
if cb.name().lower() == name and \
|
2003-03-27 07:34:48 +01:00
|
|
|
not issubclass(cls, callbacks.PrivmsgRegexp) and \
|
|
|
|
issubclass(cls, callbacks.Privmsg):
|
2003-05-29 18:36:34 +02:00
|
|
|
commands = [x for x in dir(cls)
|
2003-10-09 20:06:46 +02:00
|
|
|
if cb.isCommand(x) and
|
|
|
|
hasattr(getattr(cb, x), '__doc__') and
|
|
|
|
callbacks.canonicalName(x) == x]
|
2003-03-28 08:23:12 +01:00
|
|
|
commands.sort()
|
2003-03-27 07:34:48 +01:00
|
|
|
irc.reply(msg, ', '.join(commands))
|
|
|
|
return
|
2003-09-07 06:05:34 +02:00
|
|
|
irc.error(msg, 'There is no plugin named %s, ' \
|
2003-09-22 12:22:06 +02:00
|
|
|
'or that plugin has no commands.' % name)
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-10-22 06:32:29 +02:00
|
|
|
def apropos(self, irc, msg, args):
|
|
|
|
"""<string>
|
|
|
|
|
|
|
|
Searches for <string> in the commands currently offered by the bot,
|
|
|
|
returning a list of the commands containing that string.
|
|
|
|
"""
|
|
|
|
s = privmsgs.getArgs(args)
|
2003-10-26 18:39:01 +01:00
|
|
|
commands = {}
|
2003-10-22 06:32:29 +02:00
|
|
|
L = []
|
|
|
|
for cb in irc.callbacks:
|
|
|
|
if isinstance(cb, callbacks.Privmsg) and \
|
|
|
|
not isinstance(cb, callbacks.PrivmsgRegexp):
|
|
|
|
for attr in dir(cb):
|
|
|
|
if s in attr and cb.isCommand(attr):
|
2003-10-26 18:39:01 +01:00
|
|
|
commands.setdefault(attr, []).append(cb.name())
|
|
|
|
for (key, names) in commands.iteritems():
|
|
|
|
if len(names) == 1:
|
|
|
|
L.append(key)
|
|
|
|
else:
|
|
|
|
for name in names:
|
|
|
|
L.append('%s %s' % (name, key))
|
2003-10-27 05:59:54 +01:00
|
|
|
if L:
|
|
|
|
L.sort()
|
|
|
|
irc.reply(msg, utils.commaAndify(L))
|
|
|
|
else:
|
|
|
|
irc.error(msg, 'No appropriate commands were found.')
|
2003-10-22 06:32:29 +02:00
|
|
|
|
2003-10-20 12:25:13 +02:00
|
|
|
def help(self, irc, msg, args):
|
|
|
|
"""[<plugin>] <command>
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-10-22 20:49:51 +02:00
|
|
|
This command gives a useful description of what <command> does.
|
|
|
|
<plugin> is only necessary if the command is in more than one plugin.
|
2003-03-27 07:34:48 +01:00
|
|
|
"""
|
2003-10-20 12:25:13 +02:00
|
|
|
if len(args) > 1:
|
|
|
|
cb = irc.getCallback(args[0])
|
|
|
|
if cb is not None:
|
|
|
|
command = callbacks.canonicalName(privmsgs.getArgs(args[1:]))
|
2003-10-24 13:31:09 +02:00
|
|
|
command = command.lstrip(conf.prefixChars)
|
2003-10-24 23:35:59 +02:00
|
|
|
name = ' '.join(args)
|
2003-10-20 12:25:13 +02:00
|
|
|
if hasattr(cb, 'isCommand') and cb.isCommand(command):
|
|
|
|
method = getattr(cb, command)
|
|
|
|
if hasattr(method, '__doc__') and method.__doc__ != None:
|
2003-10-24 23:35:59 +02:00
|
|
|
irc.reply(msg, callbacks.getHelp(method, name=name))
|
2003-10-20 12:25:13 +02:00
|
|
|
else:
|
|
|
|
irc.error(msg, 'That command has no help.')
|
2003-09-25 10:14:46 +02:00
|
|
|
else:
|
2003-10-24 23:35:59 +02:00
|
|
|
irc.error(msg, 'There is no such command %s.' % name)
|
2003-03-27 07:34:48 +01:00
|
|
|
else:
|
2003-10-20 12:25:13 +02:00
|
|
|
irc.error(msg, 'There is no such plugin %s' % args[0])
|
|
|
|
return
|
2003-03-27 07:34:48 +01:00
|
|
|
command = callbacks.canonicalName(privmsgs.getArgs(args))
|
2003-10-19 21:19:47 +02:00
|
|
|
# Users might expect "@help @list" to work.
|
|
|
|
command = command.lstrip(conf.prefixChars)
|
2003-10-20 12:25:13 +02:00
|
|
|
cbs = callbacks.findCallbackForCommand(irc, command)
|
|
|
|
if len(cbs) > 1:
|
2003-10-24 23:35:59 +02:00
|
|
|
names = [cb.name() for cb in cbs]
|
|
|
|
names.sort()
|
2003-10-22 20:49:51 +02:00
|
|
|
irc.error(msg, 'That command exists in the %s plugins. '
|
|
|
|
'Please specify exactly which plugin command '
|
2003-10-24 23:35:59 +02:00
|
|
|
'you want help with.'% utils.commaAndify(names))
|
2003-10-20 12:25:13 +02:00
|
|
|
return
|
|
|
|
elif not cbs:
|
|
|
|
irc.error(msg, 'There is no such command %s.' % command)
|
|
|
|
else:
|
|
|
|
cb = cbs[0]
|
2003-03-27 07:34:48 +01:00
|
|
|
method = getattr(cb, command)
|
2003-08-22 09:00:07 +02:00
|
|
|
if hasattr(method, '__doc__') and method.__doc__ is not None:
|
2003-10-24 23:35:59 +02:00
|
|
|
irc.reply(msg, callbacks.getHelp(method, name=command))
|
2003-03-27 07:34:48 +01:00
|
|
|
else:
|
2003-10-24 13:31:09 +02:00
|
|
|
irc.error(msg, '%s has no help.' % command)
|
2003-08-20 18:26:23 +02:00
|
|
|
|
2003-09-12 23:16:59 +02:00
|
|
|
def hostmask(self, irc, msg, args):
|
2003-10-21 23:33:27 +02:00
|
|
|
"""[<nick>]
|
2003-09-12 23:16:59 +02:00
|
|
|
|
2003-10-21 23:33:27 +02:00
|
|
|
Returns the hostmask of <nick>. If <nick> isn't given, return the
|
|
|
|
hostmask of the person giving the command.
|
2003-09-12 23:16:59 +02:00
|
|
|
"""
|
2003-11-11 14:20:06 +01:00
|
|
|
nick = privmsgs.getArgs(args, required=0, optional=1)
|
2003-11-15 04:21:34 +01:00
|
|
|
if nick:
|
|
|
|
try:
|
2003-10-21 23:33:27 +02:00
|
|
|
irc.reply(msg, irc.state.nickToHostmask(nick))
|
2003-11-15 04:21:34 +01:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'I haven\'t seen anyone named %r' % nick)
|
|
|
|
else:
|
|
|
|
irc.reply(msg, msg.prefix)
|
2003-09-12 23:16:59 +02:00
|
|
|
|
2003-03-27 07:34:48 +01:00
|
|
|
def version(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns the version of the current bot.
|
|
|
|
"""
|
2003-08-28 15:59:07 +02:00
|
|
|
irc.reply(msg, conf.version)
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-03-28 09:41:11 +01:00
|
|
|
def source(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns a URL saying where to get SupyBot.
|
|
|
|
"""
|
2003-04-08 09:20:42 +02:00
|
|
|
irc.reply(msg, 'My source is at http://www.sf.net/projects/supybot/')
|
2003-03-28 09:41:11 +01:00
|
|
|
|
2003-03-27 07:34:48 +01:00
|
|
|
def logfilesize(self, irc, msg, args):
|
2003-04-14 16:53:58 +02:00
|
|
|
"""[<logfile>]
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-04-14 16:53:58 +02:00
|
|
|
Returns the size of the various logfiles in use. If given a specific
|
|
|
|
logfile, returns only the size of that logfile.
|
2003-03-27 07:34:48 +01:00
|
|
|
"""
|
2003-11-11 14:20:06 +01:00
|
|
|
filename = privmsgs.getArgs(args, required=0, optional=1)
|
2003-04-14 16:53:58 +02:00
|
|
|
if filename:
|
2003-04-14 16:55:28 +02:00
|
|
|
if not filename.endswith('.log'):
|
2003-04-14 16:53:58 +02:00
|
|
|
irc.error(msg, 'That filename doesn\'t appear to be a log.')
|
|
|
|
return
|
|
|
|
filenames = [filename]
|
|
|
|
else:
|
|
|
|
filenames = os.listdir(conf.logDir)
|
2003-03-27 07:34:48 +01:00
|
|
|
result = []
|
2003-04-14 16:56:59 +02:00
|
|
|
for file in filenames:
|
2003-03-27 07:34:48 +01:00
|
|
|
if file.endswith('.log'):
|
|
|
|
stats = os.stat(os.path.join(conf.logDir, file))
|
|
|
|
result.append((file, str(stats.st_size)))
|
2003-11-15 04:21:34 +01:00
|
|
|
irc.reply(msg, ', '.join(imap(': '.join, result)))
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-03-27 22:34:50 +01:00
|
|
|
def getprefixchar(self, irc, msg, args):
|
|
|
|
"""takes no arguments
|
|
|
|
|
|
|
|
Returns the prefix character(s) the bot is currently using.
|
|
|
|
"""
|
|
|
|
irc.reply(msg, repr(conf.prefixChars))
|
|
|
|
|
2003-09-07 06:05:34 +02:00
|
|
|
def plugin(self, irc, msg, args):
|
2003-04-14 07:54:33 +02:00
|
|
|
"""<command>
|
|
|
|
|
2003-09-07 06:05:34 +02:00
|
|
|
Returns the plugin <command> is in.
|
2003-04-14 07:54:33 +02:00
|
|
|
"""
|
2003-06-18 08:05:33 +02:00
|
|
|
command = callbacks.canonicalName(privmsgs.getArgs(args))
|
2003-10-20 12:25:13 +02:00
|
|
|
cbs = callbacks.findCallbackForCommand(irc, command)
|
|
|
|
if cbs:
|
|
|
|
irc.reply(msg, utils.commaAndify([cb.name() for cb in cbs]))
|
2003-04-14 07:54:33 +02:00
|
|
|
else:
|
|
|
|
irc.error(msg, 'There is no such command %s' % command)
|
|
|
|
|
2003-09-07 06:05:34 +02:00
|
|
|
def more(self, irc, msg, args):
|
2003-09-07 08:42:17 +02:00
|
|
|
"""[<nick>]
|
2003-09-07 06:05:34 +02:00
|
|
|
|
|
|
|
If the last command was truncated due to IRC message length
|
|
|
|
limitations, returns the next chunk of the result of the last command.
|
2003-09-12 00:21:56 +02:00
|
|
|
If <nick> is given, it takes the continuation of the last command from
|
2003-09-07 08:42:17 +02:00
|
|
|
<nick> instead of the person sending this message.
|
2003-09-07 06:05:34 +02:00
|
|
|
"""
|
2003-11-11 14:20:06 +01:00
|
|
|
nick = privmsgs.getArgs(args, required=0, optional=1)
|
2003-09-07 08:48:42 +02:00
|
|
|
userHostmask = msg.prefix.split('!', 1)[1]
|
2003-09-07 08:42:17 +02:00
|
|
|
if nick:
|
|
|
|
try:
|
2003-09-22 15:07:20 +02:00
|
|
|
(private, L) = self._mores[nick]
|
|
|
|
if not private:
|
2003-09-08 21:43:33 +02:00
|
|
|
self._mores[userHostmask] = L[:]
|
|
|
|
else:
|
|
|
|
irc.error(msg, '%s has no public mores.' % nick)
|
|
|
|
return
|
2003-09-07 08:42:17 +02:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'Sorry, I can\'t find a hostmask for %s' % nick)
|
|
|
|
return
|
2003-09-07 06:05:34 +02:00
|
|
|
try:
|
2003-09-07 07:13:58 +02:00
|
|
|
L = self._mores[userHostmask]
|
|
|
|
chunk = L.pop()
|
|
|
|
if L:
|
|
|
|
chunk += ' \x02(%s)\x0F' % \
|
|
|
|
utils.nItems(len(L), 'message', 'more')
|
2003-09-07 06:56:26 +02:00
|
|
|
irc.reply(msg, chunk, True)
|
2003-09-07 06:05:34 +02:00
|
|
|
except KeyError:
|
|
|
|
irc.error(msg, 'You haven\'t asked me a command!')
|
|
|
|
except IndexError:
|
|
|
|
irc.error(msg, 'That\'s all, there is no more.')
|
|
|
|
|
2003-09-17 10:07:24 +02:00
|
|
|
def _validLastMsg(self, msg):
|
|
|
|
return msg.prefix and \
|
|
|
|
msg.command == 'PRIVMSG' and \
|
|
|
|
ircutils.isChannel(msg.args[0])
|
|
|
|
|
2003-09-07 07:26:18 +02:00
|
|
|
def last(self, irc, msg, args):
|
2003-11-12 01:27:34 +01:00
|
|
|
"""[--{from,in,to,with,regexp}] <args>
|
2003-09-07 07:26:18 +02:00
|
|
|
|
|
|
|
Returns the last message matching the given criteria. --from requires
|
|
|
|
a nick from whom the message came; --in and --to require a channel the
|
|
|
|
message was sent to; --with requires some string that had to be in the
|
|
|
|
message; --regexp requires a regular expression the message must match
|
|
|
|
"""
|
|
|
|
(optlist, rest) = getopt.getopt(args, '', ['from=', 'in=', 'to=',
|
2003-11-12 01:27:34 +01:00
|
|
|
'with=', 'regexp='])
|
|
|
|
|
2003-09-07 07:26:18 +02:00
|
|
|
predicates = []
|
|
|
|
for (option, arg) in optlist:
|
2003-11-15 04:21:34 +01:00
|
|
|
if option == '--from':
|
2003-10-24 23:55:34 +02:00
|
|
|
predicates.append(lambda m, arg=arg: \
|
|
|
|
ircutils.hostmaskPatternEqual(arg, m.nick))
|
2003-11-15 04:21:34 +01:00
|
|
|
elif option == '--in' or option == 'to':
|
2003-09-07 07:26:18 +02:00
|
|
|
if not ircutils.isChannel(arg):
|
|
|
|
irc.error(msg, 'Argument to --%s must be a channel.' % arg)
|
|
|
|
return
|
|
|
|
predicates.append(lambda m, arg=arg: m.args[0] == arg)
|
2003-11-15 04:21:34 +01:00
|
|
|
elif option == '--with':
|
2003-09-07 07:26:18 +02:00
|
|
|
predicates.append(lambda m, arg=arg: arg in m.args[1])
|
2003-11-15 04:21:34 +01:00
|
|
|
elif option == '--regexp':
|
2003-09-07 07:26:18 +02:00
|
|
|
try:
|
|
|
|
r = utils.perlReToPythonRe(arg)
|
|
|
|
except ValueError, e:
|
|
|
|
irc.error(msg, str(e))
|
|
|
|
return
|
|
|
|
predicates.append(lambda m: r.search(m.args[1]))
|
2003-11-15 04:21:34 +01:00
|
|
|
iterable = ifilter(self._validLastMsg, reviter(irc.state.history))
|
|
|
|
iterable.next() # Drop the first message.
|
|
|
|
for m in iterable:
|
2003-09-07 07:26:18 +02:00
|
|
|
for predicate in predicates:
|
|
|
|
if not predicate(m):
|
|
|
|
break
|
|
|
|
else:
|
2003-11-12 01:27:34 +01:00
|
|
|
irc.reply(msg, ircmsgs.prettyPrint(m))
|
2003-09-07 07:26:18 +02:00
|
|
|
return
|
|
|
|
irc.error(msg, 'I couldn\'t find a message matching that criteria.')
|
|
|
|
|
|
|
|
def tell(self, irc, msg, args):
|
|
|
|
"""<nick|channel> <text>
|
|
|
|
|
|
|
|
Tells the <nick|channel> whatever <text> is. Use nested commands to
|
|
|
|
your benefit here.
|
|
|
|
"""
|
2003-11-11 14:20:06 +01:00
|
|
|
(target, text) = privmsgs.getArgs(args, required=2)
|
2003-09-07 07:26:18 +02:00
|
|
|
s = '%s wants me to tell you: %s' % (msg.nick, text)
|
|
|
|
irc.queueMsg(ircmsgs.privmsg(target, s))
|
|
|
|
raise callbacks.CannotNest
|
|
|
|
|
2003-10-03 17:42:11 +02:00
|
|
|
def private(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Replies with <text> in private. Use nested commands to your benefit
|
|
|
|
here.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
irc.reply(msg, text, private=True)
|
|
|
|
|
2003-11-11 12:32:09 +01:00
|
|
|
def action(self, irc, msg, args):
|
|
|
|
"""takes any number of arguments
|
|
|
|
|
|
|
|
Returns the arguments given it, but as an action.
|
|
|
|
"""
|
|
|
|
irc.queueMsg(ircmsgs.action(ircutils.replyTo(msg), ' '.join(args)))
|
|
|
|
|
2003-10-20 12:10:46 +02:00
|
|
|
def notice(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Replies with <text> in a private notice. Use nested commands to your
|
|
|
|
benefit here.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
irc.reply(msg, text, notice=True)
|
2003-09-07 07:26:18 +02:00
|
|
|
|
2003-03-27 07:34:48 +01:00
|
|
|
|
2003-10-21 08:03:57 +02:00
|
|
|
Class = Misc
|
2003-03-27 07:34:48 +01:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|