1 |
#! /path/to/eggdrop |
2 |
# ^- set that to the directory eggdrop is in ie "#! /users/lamest/egg/eggdrop" |
3 |
# |
4 |
# $Id: eggdrop.conf.dist,v 1.21 2000/02/03 21:58:28 fabian Exp $ |
5 |
# |
6 |
# This is a sample configuration file for your bot. You will definitely |
7 |
# want to edit this, to set up your bot. Right now it creates a bot called |
8 |
# "LamestBot" which sits on channel #lamest. |
9 |
# |
10 |
# more options can be found in files in doc/settings/ |
11 |
# |
12 |
# IMPORTANT: Remember to make install and cd to the directory it created |
13 |
# (~/eggdrop by default) before you continue, running the bot from |
14 |
# eggdrop1.5/ will not work. |
15 |
# |
16 |
# PLEASE EDIT THIS FILE COMPLETELY! YOUR BOT WILL NOT FUNCTION PROPERLY IF |
17 |
# YOU DO NOT CONFIGURE IT CORRECTLY! WE CAN NOT STRESS THIS ENOUGH! |
18 |
|
19 |
# don't edit those 9 lines now!! |
20 |
set mod-path "modules/" |
21 |
loadmodule dns |
22 |
loadmodule channels |
23 |
loadmodule server |
24 |
loadmodule ctcp |
25 |
loadmodule irc |
26 |
loadmodule notes |
27 |
loadmodule console |
28 |
checkmodule blowfish |
29 |
|
30 |
# start configuring here! |
31 |
|
32 |
##### variables: |
33 |
set nick "Lamestbot" |
34 |
# the nick of the bot, that which it uses on IRC, and on the botnet |
35 |
# unless you specify a sperate botnet-nick |
36 |
|
37 |
set altnick "Llamab?t" |
38 |
# an alternative nick to use if the nick specified by 'set nick' is |
39 |
# unavailable. All '?' characters will be replaced by a random number. |
40 |
|
41 |
set realname "/msg LamestBot hello" |
42 |
# what to display in the real-name field for the bot |
43 |
|
44 |
set servers { |
45 |
you.need.to.change.this:6667 |
46 |
} |
47 |
# the server list -- the bot will start at the first server listed, and cycle |
48 |
# through them whenever it's disconnected |
49 |
# (please note: you need to change these servers to YOUR network's servers) |
50 |
|
51 |
channel add #lamest { |
52 |
chanmode "+nt-likm" |
53 |
idle-kick 0 |
54 |
stopnethack-mode 0 |
55 |
} |
56 |
|
57 |
channel set #lamest -clearbans +enforcebans +dynamicbans +userbans |
58 |
channel set #lamest +dynamicexempts +userexempts +dynamicinvites +userinvites |
59 |
channel set #lamest -autoop -bitch +protectops +protectfriends +dontkickops |
60 |
channel set #lamest +greet +statuslog |
61 |
channel set #lamest +revenge +autovoice |
62 |
channel set #lamest -secret -shared +cycle |
63 |
channel set #lamest -inactive -seen +nodesynch |
64 |
|
65 |
set net-type 0 |
66 |
# set here your network |
67 |
# [0/1/2/3/4/5] What is your network? |
68 |
# 0 = Efnet (non +e/+I hybrid), 1 = IRCnet, 2 = Undernet, 3 = Dalnet, |
69 |
# 4 = Efnet +e/+I hybrid, 5 = Others |
70 |
|
71 |
|
72 |
# various stuff... |
73 |
|
74 |
listen 3333 all |
75 |
# set here the port where eggdrop should listen von telnet connections |
76 |
|
77 |
set owner "MrLame, MrsLame" |
78 |
# set here the list of owners of the bot |
79 |
|
80 |
|
81 |
# files & directories |
82 |
|
83 |
set userfile "LamestBot.user" |
84 |
set chanfile "LamestBot.chan" |
85 |
set help-path "help/" |
86 |
set temp-path "/tmp" |
87 |
logfile msbxco * "logs/eggdrop.log" |
88 |
logfile jpk #lamest "logs/lamest.log" |
89 |
|
90 |
|
91 |
# you have to remove this line to make your bot work |
92 |
# die "you didn't edit your config file! that's a NO NO" |
93 |
|
94 |
##### SCRIPTS ##### |
95 |
|
96 |
# these are some commonly loaded (and needed) scripts. |
97 |
source scripts/alltools.tcl |
98 |
source scripts/action.fix.tcl |
99 |
source scripts/userinfo1.0.tcl |
100 |
loadhelp userinfo.help |