eli teen kannun lanei varten ja hain botin RacBot:in eli nyt oon installioinu sen ja nyt pitäs ruvet laittaa sitä kuntoon joten saiskos apua en tie mitä muutan täs tulee lista SE ON PITKÄ:
#!/path/to/racbot
##
##############################################################################
## ##
## EGGDROP RACBOT EXAMPLE CONFIGURATION FILE (QUICK VERSION) ##
## ##
##############################################################################
##
## This is an example configuration file for your Bot. It currently creates a
## standard Bot called "RacBot". If you require several advanced options then
## look at the file "racbot.conf.dist". (Most new users do not require the
## advanced configuration options and can add advanced options later).
##
## It is highly recommended that you edit this file to suit your needs (and
## save it under a different name) before attempting to run Eggdrop RacBot.
## For more detailed documentation about each configuration option, refer to
## the document "CONFIG_SETTING.txt" in the "doc" subdirectory.
##
## Format:
## "####" is a section title
## "##" is a text comment
## "#" is configuration option commented out (shown set to the default)
## "#!" is the executable path (top line)
##
## NOTE - Windows users: When specifying paths to files, you need to specify
## the UNIX path separator "/" instead of "".
## E.g. "c:racbot" is written as "c:/racbot"
##
##############################################################################
##
## IMPORTANT - UNIX USERS (Windows users are not required to do this):
## Set the top line of this file to the directory the "racbot" executable is
## in, i.e.. type the shell command "pwd" when in the directory where Eggdrop
## RacBot has been installed and paste the result above after #! leaving the
## /racbot at the end of the line.
#### LANGUAGE SETTINGS ####
##
## WARNING: If you remove the below setting then the Bot will not start
## The default language the Bot will use (IMPORTANT: This must be defined)
defaultlang english
#### BASIC SETTINGS ####
##
## The handle and email of the Bot's Administrator.
set admin "No-one <noone@nowhere.com>>"
## The IRC network the Bot is on (for informational purposes).
set network "Unknown-Network"
## What port should the Bot listen for telnet connections and other Bots?
## (Use the command "netstat -a | grep LISTEN" to view ports used by other
## processes and Bots, then choose a port at least 10 away from a used port).
## Syntax is "listen <port-number> all".
listen 3333 all
## Who are the permanent owners of this Bot? (Please choose your permanent
## users carefully. They have full access to your Bot and Shell/System
## using the DCC Commands "set" and "tcl"

.
## Syntax is set owner "<handle1>,<handle2>..."
set owner ""
#### LOG FILES ####
##
## Log Errors
## (Keep this incase of problems, particularly when "mail-debug" is set to "1"

.
logfile e * "${log-path}${admin-path}error.log"
#### MODULES ####
##
## By default all modules are loaded. Module specific settings are listed
## below the relevant module.
#### RACCHANNEL MODULE ####
##
## The racchannel module provides IRC channel support. It should be used in
## tandem with the racirc and racserver modules.
## Load racchannel module
loadmodule racchannel
#### RACSERVER MODULE ####
##
## The racserver module provides IRC Server support. It should be used in
## tandem with the racirc and racchannel modules, otherwise the Bot will
## sit on an IRC Server, unable to join any channels.
## Load racserver module
loadmodule racserver
## The nickname of the Bot on IRC (and on the Botnet unless botnet-nick is
## specified).
set nick "RacBot"
## The Alternative IRC nickname (used when nickname is already taken).
set altnick "RacBotII"
## What is displayed as the Real Name when you /whois the Bot.
set realname "/MSG <botnick> HELLO"
## The following is a list of Tcl commands to execute when the Bot joins a
## server. The default is to set the Bot's IRC usermodes to "+i"
set init-server { putserv "MODE $botnick +i" }
## This is a list of IRC servers the Bot will connect to by default. If the
## Bot cannot connect to the first server it will try the next one and so on.
set servers {
localhost:6667
localhost:7000
}
#### RACIRC MODULE ####
##
## The racirc module provides support for IRC Channel events. It should be
## used in tandem with the racchannel and racserver modules.
## Load racirc module
loadmodule racirc
## When someone msgs the Bot "hello", do we add an account for them?
## (1 = yes, 0 = no)
#set learn-users 0
#### RACTRANSFER MODULE ####
##
## The ractransfer module provides support for DCC and Botnet file transfers.
## Load ractransfer module
loadmodule ractransfer
#### RACFILESYS MODULE ####
##
## The racfilesys module provides support for a DCC fileserver. It should be
## used in tandem with the ractransfer module.
## Load racfilesys module
loadmodule racfilesys
## The base directory containing files that can be downloaded by filesystem
## users.
set files-path "filesys/"
## The directory where files are placed after being uploaded. Set this to ""
## if you want to disable uploads
set incoming-path "filesys/incoming/"
#### RACSEEN MODULE ####
##
## The racseen module provides support for the seen command on IRC. It should
## be used in tandem with the racirc module.
## Load racseen module
loadmodule racseen
#### ENCRYPTION MODULE ####
##
## An encryption module is required to encrypt/decrypt the userfile etc.
## Normally the racblowfish module is used to provide encryption.
## Load racblowfish module
checkmodule racblowfish
#### RACSTATS MODULE ####
##
## The racstats module keeps statistics for each IRC channel. It should be
## used in tandem with the racirc module.
## Load racstats module
loadmodule racstats
#### RACSWEAR MODULE ####
##
## The racswear module provides support for detecting swearing users on IRC.
## It should be used in tandem with the racirc module.
## Load racswear module
loadmodule racswear
#### RACADMIN MODULE ####
##
## The racadmin module provides support for daily userchanges emails, weekly
## reports and autoweed (automatically deleting old/unused accounts).
## Load racadmin module
loadmodule racadmin
## Who do we email the userchanges report to? (This setting normally contains
## the email addresss of the permanent owners).
## Syntax is "set userchanges-email <email1>,<email2>..."
set userchanges-email ""
#### RACWEBPAGE MODULE ####
##
## The racwebpage module provides support for IRC channel statistic webpages.
## It should be used in tandem with the racstats module.
## Load racwebpage module
loadmodule racwebpage
## The location where HTML output is produced.
## (You would normally configure your web server to look in this directory.
## UNIX users can instead create the symlink "public_html -> racbot/web".
## I.e the shell commmand "ln -s racbot/web public_html" in your home dir).
#set webpath "web/"
## This is the Bot's Homepage URL.
## (It is used to advertise the website, channel statistics etc).
#set homepage ""
#### ADVANCED SETTINGS ####
##
## When the bot crashes, do we email debugging information to the Eggdrop
## RacBot developers automatically? (See PRIVACY.txt for more information).
## PLEASE NOTE: You will be helping with the development of Eggdrop RacBot
## if you leave this set to "1".
## (1 = yes, 0 = no).
set mail-debug 1