Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

supybot(1) [debian man page]

SUPYBOT(1)						      General Commands Manual							SUPYBOT(1)

NAME
supybot - A robust and user friendly Python IRC bot SYNOPSIS
supybot [options] configFile DESCRIPTION
Supybot is a robust, user-friendly, and programmer-friendly Python IRC bot. It aims to be an adequate replacement for most existing IRC bots. It includes a very flexible and powerful ACL system for controlling access to commands, as well as more than 50 builtin plugins pro- viding around 400 actual commands. OPTIONS
--version Show version of program. -h, --help Show summary of options. -P, --profile Enable profiling. -n NICK, --nick=NICK Nick the bot should use. -u USER, --user=USER Full username the bot should use. -i IDENT, --ident=IDENT Ident the bot should use. -d, --daemon Determines whether the bot will daemonize. This is a no-op on non-POSIX systems. --allow-default-owner Determines whether the bot will allow its defaultCapabilities not to include "-owner", thus giving all users the owner capability by default. This is dumb, hence we require a command-line option to enable it. --allow-root Determines whether the bot will be allowed to run as root. You do not want this. Do not do it. Even if you think you want it, you do not. --debug Determines whether some extra debugging stuff will be logged by this script. SEE ALSO
python(1), supybot-test(1), supybot-botchk(1), supybot-wizard(1), supybot-adduser(1), supybot-plugin-doc(1), supybot-plugin-create(1) AUTHOR
This manual page was originally written by James Vega <jamessan at supybot dot com>. Permission is granted to copy, distribute and/or mod- ify this document under the terms of the Supybot license, a BSD-style license. APRIL 2005 SUPYBOT(1)

Check Out this Related Man Page

POE::Component::IRC::Plugin::BotTraffic(3pm)		User Contributed Perl Documentation	      POE::Component::IRC::Plugin::BotTraffic(3pm)

NAME
POE::Component::IRC::Plugin::BotTraffic - A PoCo-IRC plugin that generates events when you send messages SYNOPSIS
use POE::Component::IRC::Plugin::BotTraffic; $irc->plugin_add( 'BotTraffic', POE::Component::IRC::Plugin::BotTraffic->new() ); sub irc_bot_public { my ($kernel, $heap) = @_[KERNEL, HEAP]; my $channel = $_[ARG0]->[0]; my $what = $_[ARG1]; print "I said '$what' on channel $channel "; return; } DESCRIPTION
POE::Component::IRC::Plugin::BotTraffic is a POE::Component::IRC plugin. It watches for when your bot sends PRIVMSGs and NOTICEs to the server and generates the appropriate events. These events are useful for logging what your bot says. METHODS
"new" No arguments required. Returns a plugin object suitable for feeding to POE::Component::IRC's "plugin_add" method. OUTPUT EVENTS
These are the events generated by the plugin. Both events have "ARG0" set to an arrayref of recipients and "ARG1" the text that was sent. "irc_bot_public" "ARG0" will be an arrayref of recipients. "ARG1" will be the text sent. "irc_bot_msg" "ARG0" will be an arrayref of recipients. "ARG1" will be the text sent. "irc_bot_action" "ARG0" will be an arrayref of recipients. "ARG1" will be the text sent. "irc_bot_notice" "ARG0" will be an arrayref of recipients. "ARG1" will be the text sent. AUTHOR
Chris 'BinGOs' Williams [chris@bingosnet.co.uk] SEE ALSO
POE::Component::IRC perl v5.14.2 2011-12-07 POE::Component::IRC::Plugin::BotTraffic(3pm)
Man Page