This is a little text file that will help you set up your
bot for RAW bindings and configure it according to your
conditions.

First of all, if you plan on running this script with other
bots that will be sharing user files, then you need to define
the channel specific flag "v" for autovoice on the other bots.
To do this, add the following line to your config file on
the sharing bots:

set chanflag8 v

This will keep the sharing bots from becoming confused because
they do not recognize the auto-voice (+v) flag for the users.

Also, since the addition of the IRC oper commands, the script now
requires you to compile your bot with RAW enabled in order for these procedures to work.  This requires more CPU resources since the bot
will have to process all the information it recieves from the server.
If you have a heavy load on your bot, you may want to comment out this
section and not compile with RAW enabled, as this will make it that
much more likely to "ping out".  For instance, if you run your bot
in ALOT of channels and/or have ALOT of bots linked, this extra load
on the bot from the RAW compile may not be a good idea.  But this is
your decision.  :)


To compile with raw enabled, you will need to edit the eggdrop.h file
and change the following line:

#undef RAW_BINDS

change to

#define RAW_BINDS

Then you will need to recompile your bot and you should be ready to go.

AND DONT FORGET TO EDIT SUPERBOT.TCL!!!