cybits / cybot

an IRC bot written in something that may resemble python
GNU Affero General Public License v3.0
14 stars 16 forks source link

cybot

an IRC bot written in something that may resemble python

Features include:

Reviews:

For extensive help, all you have to do is type .cybhelp in the channel! Guaranteed to be 100% helpful.

For any nerds not running a good shell, to get the bot running:

cd cybot
pip install -r requirements.txt
python irc.py <config.json>

Config Syntax

{
    "server" : "irc.rizon.net", # server address
    "port" : 6697, # server port
    "bot_nick" : "cybot", # nick of bot, 0 for random nick
    "channels" : ["#bots", "#test"], # list of channels to connect to
    "password" : "bot123", # password of bot, 0 for no password
    "prefix" : "." # command prefix so commands start with $prefix
}