1 |
#! /path/to/executable/eggdrop |
2 |
# ^- This should contain a fully qualified path to your eggdrop executable. |
3 |
# |
4 |
# $Id: eggdrop.advanced.conf,v 1.42 2002/02/28 05:13:54 wcc Exp $ |
5 |
# |
6 |
# This is a sample eggdrop configuration file which includes many |
7 |
# settings that can be used to configure your bot. |
8 |
# |
9 |
# PLEASE EDIT THIS FILE COMPLETELY! YOUR BOT WILL NOT FUNCTION PROPERLY IF |
10 |
# YOU DO NOT CONFIGURE IT CORRECTLY! WE CAN NOT STRESS THIS ENOUGH! |
11 |
# |
12 |
# NOTE: Please choose your +n (owner) users carefully! They have COMPLETE |
13 |
# access to your bot *AND* account! Only pick ones you trust! |
14 |
# |
15 |
# More options can be found in the files in doc/settings/. |
16 |
|
17 |
##### BASIC SETTINGS ##### |
18 |
|
19 |
# This setting defines the username the bot uses on IRC. This setting has |
20 |
# no effect if an ident daemon is running on your bot's machine. |
21 |
set username "lamest" |
22 |
|
23 |
# This setting defines which contact person should be shown in .status, |
24 |
# /msg help, and other places. You really should include this information. |
25 |
set admin "Lamer <email: lamer@lamest.lame.org)" |
26 |
|
27 |
# This setting is used only for info to share with others on your botnet. |
28 |
# Set this to the IRC network your bot is connected to. |
29 |
set network "I.didn't.edit.my.config.file.net" |
30 |
|
31 |
# This setting defines the timezone is your bot in. It's used for internal |
32 |
# routines as well as for logfile timestamping and scripting purposes. |
33 |
# The timezone string specifies the name of the timezone and must be three |
34 |
# or more alphabetic characters. For example, Central European Time(UTC+1) |
35 |
# should be "CET". |
36 |
set timezone "EST" |
37 |
|
38 |
# The offset setting specifies the time value to be added to the local |
39 |
# time to get Coordinated Universal Time (UTC aka GMT). The offset is |
40 |
# positive if the local timezone is west of the Prime Meridian and |
41 |
# negative if it is east. The value (in hours) must be between -23 and |
42 |
# 23. For example, if the timezone is UTC+1, the offset is -1. |
43 |
set offset "5" |
44 |
|
45 |
# If you're using virtual hosting (your machine has more than 1 IP), you |
46 |
# may want to specify the particular IP to bind to. You can specify either |
47 |
# by hostname or by IP. You may also want to set the hostname here if |
48 |
# eggdrop has trouble detecting it when it starts up. |
49 |
#set my-hostname "virtual.host.com" |
50 |
#set my-ip "99.99.0.0" |
51 |
|
52 |
# If you want to have your eggdrop messages displayed in a language other |
53 |
# than English, change this setting to match your preference. An alternative |
54 |
# would be to set the environment variable EGG_LANG to that value. |
55 |
#addlang "english" |
56 |
|
57 |
|
58 |
##### LOG FILES ##### |
59 |
|
60 |
# Eggdrop is capable of logging various things, from channel chatter to |
61 |
# partyline commands and file transfers. Logfiles are normally |
62 |
# kept for 24 hours. Afterwards, they will be renamed to "(logfile).yesterday". |
63 |
# After 48 hours, they will be overwritten by the logfile of the next day. |
64 |
# |
65 |
# Events are logged by certain categories. This way, you can specify |
66 |
# exactly what kind of events you want sent to various logfiles. |
67 |
# |
68 |
# The most common log file flags are: |
69 |
# m private msgs/ctcps to the bot |
70 |
# k kicks, bans, mode changes on the channel |
71 |
# j joins, parts, netsplits on the channel |
72 |
# p public chatter on the channel |
73 |
# s server connects/disconnects/notices |
74 |
# b information about bot linking and userfile sharing |
75 |
# c commands people use (via msg or dcc) |
76 |
# x file transfers and file-area commands |
77 |
# r (if use-console-r enabled) EVERYTHING sent to the bot by the server |
78 |
# o other: misc info, errors -- IMPORTANT STUFF |
79 |
# w wallops: msgs between IRCops (be sure to set the bot +w in init-server) |
80 |
# |
81 |
# There are others, but you probably shouldn't log them, it'd be rather |
82 |
# unethical. ;) There are also eight user-defined levels (1-8) which |
83 |
# are used by Tcl scripts. |
84 |
# |
85 |
# Each logfile belongs to a certain channel. Events of type 'k', 'j', and 'p' |
86 |
# are logged to whatever channel they happened on. Most other events are |
87 |
# currently logged to every channel. You can make a logfile belong to all |
88 |
# channels by assigning it to channel "*". |
89 |
|
90 |
# This is the maximum number of logfiles allowed. This setting can be |
91 |
# increased; however, don't decrease it. |
92 |
set max-logs 5 |
93 |
|
94 |
# This is the maximum size of your logfiles. Set it to 0 to disable. |
95 |
# This value is in kilobytes, so '550' would mean cycle logs when it |
96 |
# reaches the size of 550 kilobytes. |
97 |
# Note that this only works if you have keep-all-logs 0 (OFF). |
98 |
set max-logsize 0 |
99 |
|
100 |
# This could be good if you have had problem with the logfile filling |
101 |
# your quota/hard disk or if you log +p and publish it to the web and |
102 |
# need more up-to-date info. |
103 |
# Note that this setting might increase the CPU usage of your bot (on |
104 |
# the other hand it will decrease your mem usage). |
105 |
set quick-logs 0 |
106 |
|
107 |
# This creates a logfile named eggdrop.log containing private msgs/ctcps, |
108 |
# commands, errors, and misc. info from any channel. |
109 |
logfile mco * "logs/eggdrop.log" |
110 |
|
111 |
# This creates a logfile named lamest.log containing joins, parts, |
112 |
# netsplits, kicks, bans, mode changes, and public chat on the |
113 |
# channel #lamest. |
114 |
logfile jpk #lamest "logs/lamest.log" |
115 |
|
116 |
# Use this feature to timestamp entries in the log file. |
117 |
set log-time 1 |
118 |
|
119 |
# If you want to keep your logfiles forever, turn this setting on. All |
120 |
# logfiles will get suffix ".[day, 2 digits][month, 3 letters][year, 4 digits]". |
121 |
# Note that your quota/hard-disk might be filled by this, so check your logfiles |
122 |
# often and download them. |
123 |
set keep-all-logs 0 |
124 |
|
125 |
# If keep-all-logs is 1, this setting will define the suffix of the logfiles. |
126 |
# The default will result in a suffix like "04May2000". "%Y%m%d" will produce |
127 |
# the often used yyyymmdd format. Read the strftime manpages for more options. |
128 |
# NOTE: On systems which don't support strftime, the default format will |
129 |
# be used _always_. |
130 |
set logfile-suffix ".%d%b%Y" |
131 |
|
132 |
# You can specifiy when eggdrop should switch logfiles and start fresh. You must |
133 |
# use military time for this setting. 300 is the default, and describes 00:00. |
134 |
# Note that a leading 0 will make Tcl think this is an octal value, |
135 |
# something you probably don't want. |
136 |
set switch-logfiles-at 300 |
137 |
|
138 |
# "Writing user file..." and "Writing channel file..." messages |
139 |
# won't be logged anymore if this option is enabled. |
140 |
set quiet-save 0 |
141 |
|
142 |
|
143 |
##### CONSOLE ##### |
144 |
|
145 |
# This is the default console mode. It uses the same event flags as the log |
146 |
# files do. The console channel is automatically set to your "primary" channel, |
147 |
# which is set in the modules section of the config file. Masters can change |
148 |
# their console channel and modes with the '.console' command. |
149 |
|
150 |
set console "mkcobxs" |
151 |
|
152 |
|
153 |
##### FILES AND DIRECTORIES ##### |
154 |
|
155 |
# Specify here the filename your userfile should be saved as. |
156 |
set userfile "LamestBot.user" |
157 |
|
158 |
# If you want your userfile to be sorted upon saving, enable this setting. |
159 |
# This causes the bot to use bit more CPU when saving the usefile. |
160 |
set sort-users 0 |
161 |
|
162 |
# Specify here where eggdrop should look for help files. |
163 |
# Don't modify this setting unless you know what you're doing! |
164 |
set help-path "help/" |
165 |
|
166 |
# Specify here where eggdrop should look for text files. This is |
167 |
# used for certain Tcl and DCC commands. |
168 |
set text-path "text/" |
169 |
|
170 |
# Set here a place to store temporary files. |
171 |
set temp-path "/tmp" |
172 |
|
173 |
# The MOTD (Message Of The day) is displayed when people dcc chat or telnet |
174 |
# to the bot. Look at doc/settings.motd or type '.help set motd' in DCC |
175 |
# CHAT or telnet connection for options. |
176 |
set motd "text/motd" |
177 |
|
178 |
# This banner will be displayed on telnet connections. |
179 |
set telnet-banner "text/banner" |
180 |
|
181 |
|
182 |
##### BOTNET/DCC/TELNET ##### |
183 |
|
184 |
# Settings in this section should be unimportant for you until you deal |
185 |
# with botnets (multiple eggdrops connected together to maximize efficiency). |
186 |
# You should read doc/BOTNET before modifying these settings. |
187 |
|
188 |
# If you want to use a different nickname on the botnet than you use on |
189 |
# IRC (i.e. if you're on an un-trusted botnet), un-comment the next line |
190 |
# and set it to the nick you would like to use. |
191 |
#set botnet-nick "LlamaBot" |
192 |
|
193 |
# This opens a telnet port by which you and other bots can |
194 |
# interact with the eggdrop by telneting in. |
195 |
# |
196 |
# There are more options for the listen command in doc/tcl-commands.doc. |
197 |
# Note, if you are running more than one bot on the same machine, you will |
198 |
# want to space the telnet ports at LEAST 5 apart. 10 is even better. |
199 |
# |
200 |
# Valid ports are typically anything between 1025 and 65535 assuming the |
201 |
# port is not already in use. |
202 |
# |
203 |
# If you would like the bot to listen for users and bots in separate ports, |
204 |
# use the following format. |
205 |
# |
206 |
# listen 3333 bots |
207 |
# listen 4444 users |
208 |
# |
209 |
# If you wish to use only one port, use this format: |
210 |
listen 3333 all |
211 |
|
212 |
# This setting defines whether or not people can boot users on the eggdrop |
213 |
# from other bots in your botnet. Valid settings are: |
214 |
# 0 - allow *no* outside boots |
215 |
# 1 - allow boots from sharebots |
216 |
# 2 - allow any boots |
217 |
set remote-boots 2 |
218 |
|
219 |
# This setting prohibits remote bots from telling your eggdrop to unlink from |
220 |
# share bots. |
221 |
set share-unlinks 1 |
222 |
|
223 |
This setting will drop telnet connections not matching a known host. It |
224 |
# greatly improves protection from IRCOps, but makes it impossible for limbo |
225 |
# bots to add hosts or have NEW as a valid login. |
226 |
set protect-telnet 0 |
227 |
|
228 |
# This setting will make the bot ignore DCC chat requests which appear to |
229 |
# have bogus information on the grounds that the user may have been trying |
230 |
# to make the bot connect to somewhere that will get it into trouble, or |
231 |
# that the user has a broken client (like mIRC tends to do), in which case |
232 |
# the connect wouldn't work anyway. It's suggested that you turn this on. |
233 |
set dcc-sanitycheck 0 |
234 |
|
235 |
# This settings defines a time in seconds that the bot should wait before |
236 |
# a dcc chat, telnet, or relay connection times out. |
237 |
set ident-timeout 5 |
238 |
|
239 |
# Define here whether or not a +o user still needs the +p flag to dcc the bot. |
240 |
set require-p 0 |
241 |
|
242 |
# If you don't want eggdrop to identify itself as an eggdrop on a telnet connection, |
243 |
# set this setting to 1. Eggdrop will display 'Nickname' instead. |
244 |
set stealth-telnets 0 |
245 |
|
246 |
# If you want eggdrop to display a banner when telneting in, set this setting |
247 |
# to 1. The telnet banner is set by 'set telnet-banner'. |
248 |
set use-telnet-banner 0 |
249 |
|
250 |
# This settings defines a time in seconds that the bot should wait before |
251 |
# a dcc chat, telnet, or relay connection times out. |
252 |
set connect-timeout 15 |
253 |
|
254 |
# Specify here the number of lines to accept from a user on the partyline |
255 |
# within 10 seconds before they are considered to be flooding and therefore |
256 |
# get booted. |
257 |
set dcc-flood-thr 3 |
258 |
|
259 |
# Define here how many telnet connection attempts in how many seconds from |
260 |
# the same host constitute a flood. The correct format is Attempts:Seconds. |
261 |
set telnet-flood 5:60 |
262 |
|
263 |
# If you want telnet-flood to apply even to +f users, set this setting to 1. |
264 |
set paranoid-telnet-flood 1 |
265 |
|
266 |
# Set here the amount of seconds before giving up on hostname/address |
267 |
# lookup (you might want to increase this if you are on a slow network). |
268 |
set resolve-timeout 15 |
269 |
|
270 |
|
271 |
##### MORE ADVANCED SETTINGS ##### |
272 |
|
273 |
# Set the time in minutes that temporary ignores should last. |
274 |
set ignore-time 15 |
275 |
|
276 |
# Define here what eggdrop considers 'hourly'. All calls to it, including such |
277 |
# things as note notifying or userfile saving are affected by this. For example: |
278 |
# |
279 |
# set hourly-updates 15 |
280 |
# |
281 |
# The bot will save its userfile 15 minutes past every hour. |
282 |
set hourly-updates 00 |
283 |
|
284 |
# Un-comment the next line and set the list of owners of the bot. |
285 |
# You NEED to change this setting. |
286 |
#set owner "MrLame, MrsLame" |
287 |
|
288 |
# Who should a note be sent to when new users are learned? |
289 |
set notify-newusers "$owner" |
290 |
|
291 |
# Enter the flags that all new users should get by default. |
292 |
# See '.help whois' on the partyline for a list of flags and |
293 |
# their descriptions. |
294 |
set default-flags "hp" |
295 |
|
296 |
# Comment these two lines if you wish to enable the .tcl and .set commands. |
297 |
# If you select your owners wisely, you should be okay enabling these. |
298 |
unbind dcc n tcl *dcc:tcl |
299 |
unbind dcc n set *dcc:set |
300 |
|
301 |
# If you enable this setting, only permanent owners (owner setting) will be |
302 |
# able to use .tcl and .set. Moreover, if you want only let permanent owners |
303 |
# use .dump, then set this to 2. |
304 |
set must-be-owner 1 |
305 |
|
306 |
# Set here the maximum number of dcc connections you will allow. You can |
307 |
# increase this later, but never decrease it. |
308 |
set max-dcc 50 |
309 |
|
310 |
# If your eggdrop rejects bots that actually have already disconnected from |
311 |
# another hub, but the disconnect information has not yet spread over the |
312 |
# botnet due to lag, use this setting. The bot will wait dupwait-timeout |
313 |
# seconds before it checks again and then finally reject the bot. |
314 |
set dupwait-timeout 5 |
315 |
|
316 |
|
317 |
########## MODULES ########## |
318 |
|
319 |
# Below are various settings for the modules available with eggdrop. |
320 |
# PLEASE READ AND EDIT THEM CAREFULLY, even if you're an old hand at |
321 |
# eggdrop, things change. |
322 |
|
323 |
# This path specifies the path were eggdrop should look for its modules. |
324 |
# If you run the bot from the compilation directory, you will want to set |
325 |
# this to "". If you use 'make install' (like all good kiddies do ;), this |
326 |
# is a fine default. Otherwise, use your head :) |
327 |
set mod-path "modules/" |
328 |
|
329 |
|
330 |
#### DNS MODULE #### |
331 |
|
332 |
# This module provides asynchronous dns support. This will avoid long |
333 |
# periods where the bot just hangs there, waiting for a hostname to |
334 |
# resolve, which will often let it timeout on all other connections. |
335 |
loadmodule dns |
336 |
|
337 |
#### CHANNELS MODULE #### |
338 |
|
339 |
# This module provides channel related support for the bot. Without it, |
340 |
# you won't be able to make the bot join a channel or save channel |
341 |
# specific userfile information. |
342 |
loadmodule channels |
343 |
|
344 |
# Enter here the filename where dynamic channel settings are stored. |
345 |
set chanfile "LamestBot.chan" |
346 |
|
347 |
# Set here how long temporary bans will last (in minutes). If you |
348 |
# set this setting to 0, the bot will never remove them. |
349 |
set ban-time 120 |
350 |
|
351 |
# Set here how long temporary exempts will last (in minutes). If you |
352 |
# set this setting to 0, the bot will never remove them. The bot will |
353 |
# check the exempts every X minutes, but will not remove the exempt if |
354 |
# a ban is set on the channel that matches that exempt. Once the ban is |
355 |
# removed, then the exempt will be removed the next time the bot checks. |
356 |
# Please note that this is an IRCnet feature. |
357 |
set exempt-time 60 |
358 |
|
359 |
# Set here how long temporary invites will last (in minutes). If you |
360 |
# set this setting to 0, the bot will never remove them. |
361 |
# The bot will check the invites every X minutes, but will not remove |
362 |
# the invite if a channel is set to +i. Once the channel is -i then |
363 |
# the invite will be removed the next time the bot checks. |
364 |
# Please note that this is an IRCnet feature. |
365 |
set invite-time 60 |
366 |
|
367 |
# Set this setting to 1 if you want your bot to expire bans/exempts/invites set |
368 |
# by other opped bots on the channel. |
369 |
set force-expire 0 |
370 |
|
371 |
# Set this setting to 1 if you want your bot to share user greets with other |
372 |
# bots on the channel if sharing user data. |
373 |
set share-greet 0 |
374 |
|
375 |
# Set this setting to 1 if you want to allow users to store an info line. |
376 |
set use-info 1 |
377 |
|
378 |
# The following settings are used as default values when you .+chan #chan or .tcl |
379 |
# channel add #chan. Look in the section below for explanation of every option. |
380 |
|
381 |
set global-flood-chan 10:60 |
382 |
set global-flood-deop 3:10 |
383 |
set global-flood-kick 3:10 |
384 |
set global-flood-join 5:60 |
385 |
set global-flood-ctcp 3:60 |
386 |
set global-flood-nick 5:60 |
387 |
set global-aop-delay 5:30 |
388 |
set global-idle-kick 0 |
389 |
set global-chanmode "nt" |
390 |
set global-stopnethack-mode 0 |
391 |
set global-revenge-mode 1 |
392 |
|
393 |
set global-chanset { |
394 |
-autoop -autovoice |
395 |
-bitch +cycle |
396 |
+dontkickops +dynamicbans |
397 |
+dynamicexempts +dynamicinvites |
398 |
-enforcebans +greet |
399 |
-inactive -nodesynch |
400 |
-protectfriends +protectops |
401 |
-revenge -revengebot |
402 |
-secret -seen |
403 |
+shared +statuslog |
404 |
+userbans +userexempts |
405 |
+userinvites |
406 |
} |
407 |
|
408 |
# Add each static channel you want your bot to sit in using this command. |
409 |
# There are many different possible settings you can insert into this |
410 |
# command, which are explained below. |
411 |
|
412 |
channel add #lamest { |
413 |
chanmode "+nt-likm" |
414 |
idle-kick 0 |
415 |
stopnethack-mode 0 |
416 |
revenge-mode 1 |
417 |
aop-delay 5:30 |
418 |
need-op { putserv "PRIVMSG #lamest :op me cos i'm lame!" } |
419 |
need-invite { putserv "PRIVMSG #lamest :let me in!" } |
420 |
need-key { putserv "PRIVMSG #lamest :let me in!" } |
421 |
need-unban { putserv "PRIVMSG #lamest :let me in!" } |
422 |
need-limit { putserv "PRIVMSG #lamest :let me in!" } |
423 |
flood-chan 10:60 |
424 |
flood-deop 3:10 |
425 |
flood-kick 3:10 |
426 |
flood-join 5:60 |
427 |
flood-ctcp 3:60 |
428 |
flood-nick 5:60 |
429 |
} |
430 |
|
431 |
# chanmode +/-<modes> |
432 |
# This setting makes the bot enforce channel modes. It will always add |
433 |
# the +<modes> and remove the -<modes> modes. |
434 |
# idle-kick 0 |
435 |
# This setting will make the bot check every minute for idle |
436 |
# users. Set this to 0 to disable idle check. |
437 |
# |
438 |
# stopnethack-mode 0 |
439 |
# This setting will make the bot de-op anyone who enters the channel |
440 |
# with serverops. There're seven different modes for this settings: |
441 |
# 0 turn off, |
442 |
# 1 isoptest (allow serverop if registered op) |
443 |
# 2 wasoptest (allow serverop if op before split) |
444 |
# 3 allow serverop if isop or wasop |
445 |
# 4 allow serverop if isop and wasop. |
446 |
# 5 If the channel is -bitch, see stopnethack-mode 3 |
447 |
# If the channel is +bitch, see stopnethack-mode 1 |
448 |
# 6 If the channel is -bitch, see stopnethack-mode 2 |
449 |
# If the channel is +bitch, see stopnethack-mode 4 |
450 |
# |
451 |
# revenge-mode 1 |
452 |
# This settings defines how the bot should punish bad users when |
453 |
# revenging. There are four possible settings: |
454 |
# 0 Deop the user. |
455 |
# 1 Deop the user and give them the +d flag for the channel. |
456 |
# 2 Deop the user, give them the +d flag for the channel, and kick them. |
457 |
# 3 Deop the user, give them the +d flag for the channel, kick, and ban them. |
458 |
# |
459 |
# aop-delay (minimum:maximum) |
460 |
# This is used for autoop and autovoice. If an op or voice joins a channel |
461 |
# while another op or voice is pending, the bot will attempt to put both |
462 |
# modes on one line. |
463 |
# aop-delay 0 No delay is used. |
464 |
# aop-delay X An X second delay is used. |
465 |
# aop-delay X:Y A random delay between X and Y is used. |
466 |
# |
467 |
# need-op { putserv "PRIVMSG #lamest :op me cos i'm lame!" } |
468 |
# This setting will make the bot run the script enclosed in brackets |
469 |
# if it does not have ops. This must be shorter than 120 characters. |
470 |
# If you use scripts like getops.tcl or botnetop.tcl, you don't need |
471 |
# to set this setting. |
472 |
# |
473 |
# need-invite { putserv "PRIVMSG #lamest :let me in!" } |
474 |
# This setting will make the bot run the script enclosed in brackets |
475 |
# if it needs an invite to the channel. This must be shorter than 120 |
476 |
# characters. If you use scripts like getops.tcl or botnetop.tcl, you |
477 |
# don't need to set this setting. |
478 |
# |
479 |
# need-key { putserv "PRIVMSG #lamest :let me in!" } |
480 |
# This setting will make the bot run the script enclosed in brackets |
481 |
# if it needs the key to the channel. This must be shorter than 120 |
482 |
# characters. If you use scripts like getops.tcl or botnetop.tcl, you |
483 |
# don't need to set this setting |
484 |
# |
485 |
# need-unban { putserv "PRIVMSG #lamest :let me in!" } |
486 |
# This setting will make the bot run the script enclosed in brackets |
487 |
# if it needs to be unbanned on the channel. This must be shorter than |
488 |
# 120 characters. If you use scripts like getops.tcl or botnetop.tcl, |
489 |
# you don't need to set this setting |
490 |
# |
491 |
# need-limit { putserv "PRIVMSG #lamest :let me in!" } |
492 |
# This setting will make the bot run the script enclosed in brackets |
493 |
# if it needs the limit to be raised on the channel. This must be |
494 |
# shorter than 120 characters. If you use scripts like getops.tcl or |
495 |
# botnetop.tcl, you don't need to set this setting |
496 |
# |
497 |
# flood-chan 10:60 |
498 |
# Set here how many channel messages in how many seconds from one |
499 |
# host constitutes a flood. Setting this to 0 or 0:0 disables |
500 |
# flood protection for the channel. |
501 |
# |
502 |
# flood-deop 3:10 |
503 |
# Set here how many deops in how many seconds from one host constitutes |
504 |
# a flood. Setting this to 0 or 0:0 disables deop flood protection for |
505 |
# the channel. |
506 |
# |
507 |
# flood-kick 3:10 |
508 |
# Set here how many kicks in how many seconds from one host constitutes |
509 |
# a flood. Setting this to 0 or 0:0 disables kick flood protection for |
510 |
# the channel. |
511 |
# |
512 |
# flood-join 5:60 |
513 |
# Set here how many joins in how many seconds from one host constitutes |
514 |
# a flood. Setting this to 0 or 0:0 disables join flood protection for |
515 |
# the channel. |
516 |
# |
517 |
# flood-ctcp 3:60 |
518 |
# Set here how many channel ctcps in how many seconds from one host |
519 |
# constitutes a flood. Setting this to 0 or 0:0 disables ctcp flood |
520 |
# protection for the channel. |
521 |
# |
522 |
# flood-nick 5:60 |
523 |
# Set here how many nick changes in how many seconds from one host |
524 |
# constitutes a flood. Setting this to 0 or 0:0 disables nick flood |
525 |
# protection for the channel. |
526 |
# |
527 |
|
528 |
# There are many different options for channels which you can |
529 |
# define. They can be enabled or disabled by a plus or minus |
530 |
# in front of them. |
531 |
# |
532 |
# A complete list of all available channel settings: |
533 |
# |
534 |
# enforcebans |
535 |
# When a ban is set, kick people who are on the channel and match |
536 |
# the ban? |
537 |
# |
538 |
# dynamicbans |
539 |
# Only activate bans on the channel when necessary? This keeps |
540 |
# the channel's ban list from getting excessively long. The bot |
541 |
# still remembers every ban, but it only activates a ban on the |
542 |
# channel when it sees someone join who matches that ban. |
543 |
# |
544 |
# userbans |
545 |
# Allow bans to be made by users directly? If turned off, the bot |
546 |
# will require all bans to be made through the bot's console. |
547 |
# |
548 |
# dynamicexempts |
549 |
# Only activate exempts on the channel when necessary? This keeps |
550 |
# the channel's exempt list from getting excessively long. The bot |
551 |
# still remembers every exempt, but it only activates a exempt on |
552 |
# the channel when it sees a ban set that matches the exempt. The |
553 |
# exempt remains active on the channel for as long as the ban is |
554 |
# still active. |
555 |
# |
556 |
# userexempts |
557 |
# Allow exempts to be made by users directly? If turned off, the |
558 |
# bot will require all exempts to be made through the bot's console. |
559 |
# |
560 |
# dynamicinvites |
561 |
# Only activate invites on the channel when necessary? This keeps |
562 |
# the channel's invite list from getting excessively long. The bot |
563 |
# still remembers every invite, but the invites are only activated |
564 |
# when the channel is set to invite only and a user joins after |
565 |
# requesting an invite. Once set, the invite remains until the |
566 |
# channel goes to -i. |
567 |
# |
568 |
# userinvites |
569 |
# Allow invites to be made by users directly? If turned off, the |
570 |
# bot will require all invites to be made through the bot's console. |
571 |
# |
572 |
# autop |
573 |
# Op users with the +o flag as soon as they join the channel? |
574 |
# This is insecure and not recommended. |
575 |
# |
576 |
# bitch |
577 |
# Only let users with +o) flag be opped on the channel? |
578 |
# |
579 |
# greet |
580 |
# Say a user's info line when they join the channel? |
581 |
# |
582 |
# protectops |
583 |
# Re-op a user with the +o flag if they get deopped? |
584 |
# |
585 |
# protectfriends |
586 |
# Re-op a user with the +f flag if they get deopped? |
587 |
# |
588 |
# statuslog |
589 |
# Log the channel status line every 5 minutes? This shows the bot's |
590 |
# status on the channel (op, voice, etc.), The channel's modes, and |
591 |
# the number of +m/+o/+v/+n/+b/+e/+I users on the channel. A sample |
592 |
# status line follows: |
593 |
# |
594 |
# [01:40] @#lamest (+istn) : [m/1 o/1 v/4 n/7 b/1 e/5 I/7] |
595 |
# |
596 |
# revenge |
597 |
# Remember people who deop/kick/ban the bot, valid ops, or friends |
598 |
# and punish them? Users with the +f flag are exempt from revenge. |
599 |
# |
600 |
# revengebot |
601 |
# This is similar to to the 'revenge' option, but it only triggers |
602 |
# if a bot gets deopped, kicked or banned. |
603 |
# |
604 |
# autovoice |
605 |
# Voice users with the +v flag when they join the channel? |
606 |
# |
607 |
# secret |
608 |
# Prevent this channel from being listed on the botnet? |
609 |
# |
610 |
# shared |
611 |
# Share channel-related user info for this channel? |
612 |
# |
613 |
# cycle |
614 |
# Cycle the channel when it has no ops? |
615 |
# |
616 |
# dontkickops |
617 |
# Do you want the bot not to be able to kick users who have the +o |
618 |
# flag, letting them kick-flood for instance to protect the channel |
619 |
# against clone attacks. |
620 |
# |
621 |
# inactive |
622 |
# This prevents the bot from joining the channel (or makes it leave |
623 |
# the channel if it is already there). It can be useful to make the |
624 |
# bot leave a channel without losing its settings, channel-specific |
625 |
# user flags, channel bans, and without affecting sharing. |
626 |
# |
627 |
# seen |
628 |
# Respond to seen requests in the channel? The seen module must be |
629 |
# loaded for this to work. |
630 |
# |
631 |
# nodesynch |
632 |
# Allow non-ops to perform channel modes? This can stop the bot from |
633 |
# fighting with services such as ChanServ, or from kicking IRCops when |
634 |
# setting channel modes without having ops. |
635 |
|
636 |
channel set #lamest +enforcebans |
637 |
channel set #lamest +dynamicbans |
638 |
channel set #lamest +userbans |
639 |
channel set #lamest +dynamicexempts |
640 |
channel set #lamest +userexempts |
641 |
channel set #lamest +dynamicinvites |
642 |
channel set #lamest +userinvites |
643 |
channel set #lamest +greet |
644 |
channel set #lamest +protectops |
645 |
channel set #lamest +protectfriends |
646 |
channel set #lamest +statuslog |
647 |
channel set #lamest +revenge |
648 |
channel set #lamest +revengebot |
649 |
channel set #lamest +autovoice |
650 |
channel set #lamest +cycle |
651 |
channel set #lamest +dontkickops |
652 |
channel set #lamest -autoop |
653 |
channel set #lamest -bitch |
654 |
channel set #lamest -secret |
655 |
channel set #lamest -shared |
656 |
|
657 |
# Here is a shorter example: |
658 |
# |
659 |
# channel add #botcentral { |
660 |
# chanmode "+mntisl 1" |
661 |
# idle-kick 1 |
662 |
# } |
663 |
# channel set #botcentral +bitch +enforcebans -greet +revenge |
664 |
|
665 |
|
666 |
#### SERVER MODULE #### |
667 |
|
668 |
# This module provides the core server support. You have to load this |
669 |
# if you want your bot to come on IRC. Not loading this is equivalent |
670 |
# to the old NO_IRC define. |
671 |
loadmodule server |
672 |
|
673 |
# What is your network? |
674 |
# 0 = EFnet (non +e/+I hybrid) |
675 |
# 1 = IRCnet |
676 |
# 2 = Undernet |
677 |
# 3 = DALnet |
678 |
# 4 = EFnet +e/+I hybrid |
679 |
# 5 = Others |
680 |
set net-type 0 |
681 |
|
682 |
# Set the nick the bot uses on IRC, and on the botnet |
683 |
# unless you specify a separate botnet-nick, here. |
684 |
|
685 |
set nick "Lamestbot" |
686 |
|
687 |
# Set the alternative nick which the bot uses on IRC if the nick specified |
688 |
# by 'set nick' is unavailable. All '?' characters will be replaced by random |
689 |
# numbers. |
690 |
|
691 |
set altnick "Llamab?t" |
692 |
|
693 |
# Set what should be displayed in the real-name field for the bot on IRC. |
694 |
set realname "/msg LamestBot hello" |
695 |
|
696 |
# Set here a script to run (if any) when first connecting to a server. |
697 |
# This is limited to 120 characters. |
698 |
set init-server { putserv "MODE $botnick +i-ws" } |
699 |
|
700 |
# Set the default port which should be used if none is specified with |
701 |
# '.jump' or in 'set servers'. |
702 |
set default-port 6667 |
703 |
|
704 |
# This is the bot's server list. The bot will start at the first server listed, |
705 |
# and cycle through them whenever it gets disconnected. You need to change these |
706 |
# servers to YOUR network's servers. |
707 |
# |
708 |
# The format is: |
709 |
# server[:port[:password]] |
710 |
# |
711 |
# Both the port and password fields are optional; however, if you want to set a |
712 |
# password you must also set a port. If a port isn't specified it will default to |
713 |
# your default-port setting. |
714 |
set servers { |
715 |
you.need.to.change.this:6667 |
716 |
another.example.com:7000 |
717 |
} |
718 |
|
719 |
# This setting makes the bot try to get his original nickname back if its |
720 |
# primary nickname is already in use. |
721 |
set keep-nick 1 |
722 |
|
723 |
# Set this to 1 if you don't want your the bot to strip a leading '~' |
724 |
# on user@hosts. |
725 |
set strict-host 0 |
726 |
|
727 |
# This setting makes the bot squelch the error message when rejecting a DCC |
728 |
# CHAT or SEND. Normally it tells the DCC user that the CHAT or SEND has |
729 |
# been rejected because they don't have access. |
730 |
# Please note, sometimes IRC server operators detect bots that way. |
731 |
set quiet-reject 1 |
732 |
|
733 |
# If you want your bot to answer lower case ctcp requests (non rfc- |
734 |
# compliant), set this setting to 1. mIRC will do this, most other |
735 |
# clients will not. |
736 |
set lowercase-ctcp 0 |
737 |
|
738 |
# Set how many ctcps should be answered at once. |
739 |
set answer-ctcp 3 |
740 |
|
741 |
# Set here how many msgs in how many seconds from one host constitutes |
742 |
# a flood. If you set this to 0:0, msg flood protection will be disabled. |
743 |
set flood-msg 5:60 |
744 |
|
745 |
# Set here how many ctcps in how many seconds from one host constitutes |
746 |
# a flood. If you set this to 0:0, ctcp flood protection will be disabled. |
747 |
set flood-ctcp 3:60 |
748 |
|
749 |
# This settings makes the bot cycle forever through the server list until |
750 |
# it successfully connects to one. |
751 |
set never-give-up 1 |
752 |
|
753 |
# Often, IRC servers call themselves a name other than their actual |
754 |
# hostname. If you want eggdrop to replace your entry in the config |
755 |
# file with this name, set this to 1. If you set this setting to 0, |
756 |
# eggdrop will keep a separate list of what IRC servers call themselves. |
757 |
set strict-servernames 0 |
758 |
|
759 |
# This setting defines how long eggdrop should wait before moving from one |
760 |
# server to another on disconnect. If you set 0 here, eggdrop will not wait |
761 |
# at all and will connect instantly. Setting this too low could result in |
762 |
# your bot being K:Lined. |
763 |
set server-cycle-wait 60 |
764 |
|
765 |
# Set here how long eggdrop should wait for a response when connecting to a |
766 |
# server before giving up and moving on to next server. |
767 |
set server-timeout 60 |
768 |
|
769 |
# If the number of servers on the net gets below this number, the bot |
770 |
# will jump to a new server (it will assume it's on the losing end of |
771 |
# a netsplit). Set this to 0 to turn off. If your bot is running on |
772 |
# any major IRC network, this should probably be turned off. |
773 |
set servlimit 0 |
774 |
|
775 |
# Set this to 1 if eggdrop should check for stoned servers? (where the |
776 |
# server connection has died, but eggdrop hasn't been notified yet). |
777 |
set check-stoned 1 |
778 |
|
779 |
# This setting allows you the logging of all information received from the |
780 |
# server via console mode 'r'. |
781 |
# NOTE: This is a large security hole, allowing people to see user passwords. |
782 |
# This is now restricted to +n users only. Please choose your owners with |
783 |
# care. |
784 |
set use-console-r 0 |
785 |
|
786 |
# This setting allows you the logging of all information sent to the server |
787 |
# via console mode 'v'. |
788 |
# NOTE: This is a large security hole, allowing people to see passwords. |
789 |
# This is now restricted to +n users only. Please choose your owners with |
790 |
# care. |
791 |
set debug-output 0 |
792 |
|
793 |
# If you want your bot to exit the server if it receives an ERROR message, |
794 |
# set this to 1. |
795 |
set serverror-quit 1 |
796 |
|
797 |
# Set here the maximum number of lines to queue to the server. If you're |
798 |
# going to dump large chunks of text to people over IRC, you will probably |
799 |
# want to raise this. 300 is fine for most people though. |
800 |
set max-queue-msg 300 |
801 |
|
802 |
# If you want eggdrop to trigger binds for ignored users, set this to 1. |
803 |
set trigger-on-ignore 0 |
804 |
|
805 |
# Allow identical messages in the mode queue? |
806 |
set double-mode 0 |
807 |
|
808 |
# Allow identical messages in the server queue? |
809 |
set double-server 0 |
810 |
|
811 |
# Allow identical messages in the help queue? |
812 |
set double-help 0 |
813 |
|
814 |
# This optimizes the kick queue. It also traces nick changes and parts in |
815 |
# the channel and changes the kick queue accordingly. There are three |
816 |
# different options for this setting: |
817 |
# 0 = Turn it off. |
818 |
# 1 = Optimize the kick queue by summarizing kicks. |
819 |
# 2 = Trace nick changes and parts on the channel and change the queue |
820 |
# accordingly. For example, bot will not try to kick users who have |
821 |
# already parted the channel. |
822 |
# ATTENTION: Setting 2 is very CPU intensive. |
823 |
set optimize-kicks 1 |
824 |
|
825 |
### SERVER MODULE - OTHER NETWORKS (net-type 5) ### |
826 |
|
827 |
# This settings defines how umode +r is understood by eggdrop. Some |
828 |
# networks use +r to indicate a restricted connection. If this is your |
829 |
# case, and you want your bot to leave restricted servers and jump to |
830 |
# the next server on its list, then set it to 1. |
831 |
#set check-mode-r 1 |
832 |
|
833 |
# This setting allows you to specify the maximum nick-length supported by |
834 |
# your network. The default setting is 9. The maximum supported length by |
835 |
# eggdrop is 32. |
836 |
#set nick-len 9 |
837 |
|
838 |
#### CTCP MODULE #### |
839 |
|
840 |
# This module provides the normal ctcp replies that you'd expect. |
841 |
# Without it loaded, CTCP CHAT will not work. The server module |
842 |
# is required for this module to function. |
843 |
loadmodule ctcp |
844 |
|
845 |
# Set here how the ctcp module should answer ctcps. There are 3 possible |
846 |
# operating modes: |
847 |
# 0: Normal behavior is used. |
848 |
# 1: The bot ignores all ctcps, except for CHAT and PING requests |
849 |
# by users with the +o flag. |
850 |
# 2: Normal behavior is used, however the bot will not answer more |
851 |
# than X ctcps in Y seconds (defined by 'set flood-ctcp'). |
852 |
set ctcp-mode 0 |
853 |
|
854 |
# There are also several variables to help make your bot less noticeable. |
855 |
# They are: ctcp-version, ctcp-finger, and ctcp-userinfo. You can use set to set |
856 |
# them to values you'd like. |
857 |
|
858 |
|
859 |
#### IRC MODULE #### |
860 |
|
861 |
# This module provides basic IRC support for your bot. You have to |
862 |
# load this if you want your bot to come on IRC. The server and channels |
863 |
# modules must be loaded for this module to function. |
864 |
loadmodule irc |
865 |
|
866 |
# Set this to 1 if you want to bounce all server bans. |
867 |
set bounce-bans 1 |
868 |
|
869 |
# Set this to 1 if you want to bounce all server modes. |
870 |
set bounce-modes 0 |
871 |
|
872 |
# Set here the maximum number of bans you want the bot to set on a channel. |
873 |
# Eggdrop will not place any more bans if this limit is reached. Undernet |
874 |
# and IRCnet currently allow 30 bans, EFnet allows 20, and DALnet allows 100. |
875 |
set max-bans 20 |
876 |
|
877 |
# There is a global limit for +b/+e/+I modes. This limit is currently set to |
878 |
# 30 on IRCu 2.10 servers. |
879 |
set max-modes 30 |
880 |
|
881 |
# Set this to 1 if you want the bot to kick for control character/ctcp |
882 |
# avalanches to a channel. Remember that if it does, it won't ban them. |
883 |
# This can start kick floods. |
884 |
set kick-fun 0 |
885 |
|
886 |
# Set this to 1 if you want the bot to ban for control character/ctcp |
887 |
# avalanches to a channel. This can prevent kick floods, but it also can |
888 |
# fill the banlist. |
889 |
set ban-fun 0 |
890 |
|
891 |
# If you want people to be able to add themselves to the bot's userlist |
892 |
# with the default userflags (defined above in the config file) via the |
893 |
# 'hello' msg command, set this to 1. |
894 |
set learn-users 0 |
895 |
|
896 |
# Set here the time (in seconds) to wait for someone to return from |
897 |
# a netsplit (i.e. wasop will expire afterwards). Set this to 1500 |
898 |
# on IRCnet since its nick delay stops after 30 minutes. |
899 |
set wait-split 600 |
900 |
|
901 |
# Set here the time (in seconds) that someone must have been off-channel |
902 |
# before re-displaying their info line. |
903 |
set wait-info 180 |
904 |
|
905 |
# Set this to the maximum number of bytes to send in the arguments |
906 |
# of modes sent to the server. Most servers default this to 200. |
907 |
set mode-buf-length 200 |
908 |
|
909 |
# Many IRCops find bots by seeing if they reply to 'hello' in a msg. |
910 |
# You can change this to another word by un-commenting the following |
911 |
# two lines and changing "myword" to the word wish to use instead of |
912 |
# 'hello'. It must be a single word. |
913 |
#unbind msg - hello *msg:hello |
914 |
#bind msg - myword *msg:hello |
915 |
|
916 |
# Many takeover attempts occur due to lame users blindly /msg ident'ing to |
917 |
# the bot and attempting to guess passwords. We now unbind this command by |
918 |
# default to discourage them. You can enable this command by un-commenting |
919 |
# the following two lines. |
920 |
unbind msg - ident *msg:ident |
921 |
unbind msg - addhost *msg:addhost |
922 |
|
923 |
# If you are so lame you want the bot to display peoples info lines, even |
924 |
# when you are too lazy to add their chanrecs to a channel, set this to 1. |
925 |
# *NOTE* This means *every* user with an info line will have their info |
926 |
# line displayed on EVERY channel they join (provided they have been gone |
927 |
# longer than wait-info). |
928 |
set no-chanrec-info 0 |
929 |
|
930 |
### IRC MODULE - IRCnet SPECIFIC FEATURES (net-type 1) ### |
931 |
|
932 |
# Attention: Use these settings *only* if you set 'net-type' to 1! |
933 |
|
934 |
# Set this to 1 if you want to bounce all server exemptions (+e modes). |
935 |
set bounce-exempts 0 |
936 |
|
937 |
# Set this to 1 if you want to bounce all server invitations (+I modes). |
938 |
set bounce-invites 0 |
939 |
|
940 |
# Set here the maximum number of exempts you want eggdrop to set |
941 |
# on a channel. Eggdrop will not place any more exempts if this |
942 |
# limit is reached. |
943 |
set max-exempts 20 |
944 |
|
945 |
# Set here the maximum number of invites you want eggdrop to set |
946 |
# on a channel. Eggdrop will not place any more invites if this |
947 |
# limit is reached. |
948 |
set max-invites 20 |
949 |
|
950 |
# The following settings should be left commented unless the default values |
951 |
# are being overridden. By default, exempts and invites are on for IRCnet, |
952 |
# but off for all other large networks. This behavior can be modified with |
953 |
# the following 2 flags. If your network doesn't support +e/+I modes then you |
954 |
# will be unable to use these features. |
955 |
# |
956 |
# Do you want to enable exempts? |
957 |
#set use-exempts 0 |
958 |
|
959 |
# Do you want to use invites? |
960 |
#set use-invites 0 |
961 |
|
962 |
# At the moment, the current IRCnet IRCd version (2.10) doesn't support the mixing |
963 |
# of b,o and v modes with e and I modes. This might be changed in the future, so |
964 |
# use 1 at the moment for this setting. |
965 |
set prevent-mixing 1 |
966 |
|
967 |
### IRC MODULE - OTHER NETWORKS (net-type 5) ### |
968 |
|
969 |
# Attention: Use these settings *only* if you set 'net-type' to 5! |
970 |
|
971 |
# If your network supports more users per kick command then 1, you can |
972 |
# change this behavior here. Set this to the number of users to kick at |
973 |
# once, or set this to 0 for all at once. |
974 |
#set kick-method 1 |
975 |
|
976 |
# Some networks allow you to stack lots of channel modes into one line. |
977 |
# They're all guaranteed to support at least 3, so that's the default. |
978 |
# If you know your network supports more, you may want to adjust this. |
979 |
#set modes-per-line 3 |
980 |
|
981 |
# Some networks don't include the +l limit and +k or -k key modes |
982 |
# in the modes-per-line (see above) limitation. Set include-lk to 0 for |
983 |
# these networks. |
984 |
#set include-lk 1 |
985 |
|
986 |
# If your network doesn't use rfc 1459 compliant string matching routines, |
987 |
# set this to 0. |
988 |
#set rfc-compliant 1 |
989 |
|
990 |
|
991 |
#### TRANSFER MODULE #### |
992 |
|
993 |
# The transfer module provides dcc send/get support and userfile transfer |
994 |
# support for userfile sharing. Un-comment the next line to load it if you |
995 |
# need this functionality. |
996 |
#loadmodule transfer |
997 |
|
998 |
# Set here the maximum number of simultaneous downloads to allow for |
999 |
# each user. |
1000 |
set max-dloads 3 |
1001 |
|
1002 |
# Set here the block size for dcc transfers. ircII uses 512 bytes, |
1003 |
# but admits that may be too small. 1024 is standard these days. |
1004 |
# Set this to 0 to use turbo-dcc (recommended). |
1005 |
set dcc-block 1024 |
1006 |
|
1007 |
# Enable this setting if you want to copy files into the /tmp directory |
1008 |
# before sending them. This is useful on most systems for file stability, |
1009 |
# but if your directories are NFS mounted, it's a pain, and you'll want |
1010 |
# to set this to 0. If you are low on disk space, you may also want to |
1011 |
# set this to 0. |
1012 |
set copy-to-tmp 1 |
1013 |
|
1014 |
# Set here the time (in seconds) to wait before an inactive transfer |
1015 |
# times out. |
1016 |
set xfer-timeout 30 |
1017 |
|
1018 |
|
1019 |
#### SHARE MODULE #### |
1020 |
|
1021 |
# This module provides userfile sharing support between two directly |
1022 |
# linked bots. The transfer and channels modules are required for this |
1023 |
# module to correctly function. Un-comment the following line to load |
1024 |
# the share module. |
1025 |
#loadmodule share |
1026 |
|
1027 |
# Settings in this section must be un-commented before setting. |
1028 |
|
1029 |
# When sharing user lists, DON'T ACCEPT global flag changes from other bots? |
1030 |
# NOTE: The bot will still send changes made on the bot, it just won't accept |
1031 |
# any global flag changes from other bots. |
1032 |
#set private-global 0 |
1033 |
|
1034 |
# When sharing user lists, if private-global isn't set, which global flag |
1035 |
# changes from other bots should be ignored? |
1036 |
#set private-globals "mnot" |
1037 |
|
1038 |
# When sharing user lists, don't accept ANY userfile changes from other |
1039 |
# bots? Paranoid people should use this feature on their hub bot. This |
1040 |
# will force all userlist changes to be made via the hub. |
1041 |
#set private-user 0 |
1042 |
|
1043 |
# This setting makes the bot discard its own bot records in favor of |
1044 |
# the ones sent by the hub. |
1045 |
# NOTE: No passwords or botflags are shared, only ports and |
1046 |
# address are added to sharing procedure. This only works with hubs that |
1047 |
# are v1.5.1 or higher. |
1048 |
#set override-bots 0 |
1049 |
|
1050 |
|
1051 |
#### COMPRESS MODULE #### |
1052 |
|
1053 |
# This module provides provides support for file compression. This allows the |
1054 |
# bot to transfer compressed user files and therefore save a significant amount |
1055 |
# of bandwidth. The share module must be loaded to load this module. Un-comment |
1056 |
# the following line to the compress module. |
1057 |
#loadmodule compress |
1058 |
|
1059 |
# Allow compressed sending of user files? The user files are |
1060 |
# compressed with the compression level defined in `compress-level'. |
1061 |
set share-compressed 1 |
1062 |
|
1063 |
# This is the default compression level used. |
1064 |
#set compress-level 9 |
1065 |
|
1066 |
|
1067 |
#### FILESYSTEM MODULE #### |
1068 |
|
1069 |
# This module provides an area within the bot where users can store |
1070 |
# files. With this module, the bot is usable as a file server. The |
1071 |
# transfer module is required for this module to function. Un-comment |
1072 |
# the following line to load the filesys module. |
1073 |
#loadmodule filesys |
1074 |
|
1075 |
# Set here the 'root' directory for the file system. |
1076 |
set files-path "/home/mydir/filesys" |
1077 |
|
1078 |
# If you want to allow uploads, set this to the directory uploads |
1079 |
# should be put into. Set this to "" if you don't want people to |
1080 |
# upload files to your bot. |
1081 |
set incoming-path "/home/mydir/filesys/incoming" |
1082 |
|
1083 |
# If you don't want to have a central incoming directory, but instead |
1084 |
# want uploads to go to the current directory that a user is in, set |
1085 |
# this setting to 1. |
1086 |
set upload-to-pwd 0 |
1087 |
|
1088 |
# Eggdrop creates a '.filedb' file in each subdirectory of your file area |
1089 |
# to keep track of its own file system information. If you can't do that (for |
1090 |
# example, if the dcc path isn't owned by you, or you just don't want it to do |
1091 |
# that) specify a path here where you'd like all of the database files to be |
1092 |
# stored instead. |
1093 |
set filedb-path "" |
1094 |
|
1095 |
# Set here the maximum number of people that can be in the file area at once. |
1096 |
# Setting this to 0 makes it effectively infinite. |
1097 |
set max-file-users 20 |
1098 |
|
1099 |
# Set here the maximum allowable file size that will be received (in kb). |
1100 |
# Setting this to 0 makes it effectively infinite. |
1101 |
set max-filesize 1024 |
1102 |
|
1103 |
|
1104 |
#### NOTES MODULE #### |
1105 |
|
1106 |
# This module provides support for storing of notes for users from each |
1107 |
# other. Note sending between currently online users is supported in the |
1108 |
# core, this is only for storing the notes for later retrieval. |
1109 |
loadmodule notes |
1110 |
|
1111 |
# Set here the filename where private notes between users are stored. |
1112 |
set notefile "LamestBot.notes" |
1113 |
|
1114 |
# Set here the maximum number of notes to allow to be stored for |
1115 |
# each user (to prevent flooding). |
1116 |
set max-notes 50 |
1117 |
|
1118 |
# Set here how long (in days) to store notes before expiring them. |
1119 |
set note-life 60 |
1120 |
|
1121 |
# Set this to 1 if you want to allow users to specify a forwarding |
1122 |
# address for forwarding notes to another account on another bot. |
1123 |
set allow-fwd 0 |
1124 |
|
1125 |
# Set this to 1 if you want the bot to let people know hourly if they |
1126 |
# have any notes. |
1127 |
set notify-users 1 |
1128 |
|
1129 |
# Set this to 1 if you want the bot to let people know on join if they |
1130 |
# have any notes. |
1131 |
set notify-onjoin 1 |
1132 |
|
1133 |
# Comment out this next line. Otherwise, your bot won't start. |
1134 |
die "You didn't edit your config file like you were told, did you?" |
1135 |
|
1136 |
|
1137 |
#### CONSOLE MODULE #### |
1138 |
|
1139 |
# This module provides storage of console settings when you exit the |
1140 |
# bot or type .store on the partyline. |
1141 |
loadmodule console |
1142 |
|
1143 |
# Save users console settings automatically? Otherwise, they have |
1144 |
# to use the .store command. |
1145 |
set console-autosave 1 |
1146 |
|
1147 |
# If a user doesn't have any console settings saved, which channel |
1148 |
# do you want them automatically put on? |
1149 |
set force-channel 0 |
1150 |
|
1151 |
# Enable this setting if a user's global info line should be displayed |
1152 |
# when they join a botnet channel. |
1153 |
set info-party 0 |
1154 |
|
1155 |
|
1156 |
#### SEEN MODULE #### |
1157 |
|
1158 |
# This module provides very basic seen commands via msg, on channel or via dcc. |
1159 |
# This module works only for users in the bot's userlist. If you are looking for |
1160 |
# a better and more advanced seen module, try the gseen module by G'Quann. You |
1161 |
# can find it at http://www.visions-of-fantasy.de/gseen.mod/. |
1162 |
#loadmodule seen |
1163 |
|
1164 |
|
1165 |
#### BLOWFISH MODULE #### |
1166 |
|
1167 |
# IF YOU DON'T READ THIS YOU MAY RENDER YOUR USERFILE USELESS LATER |
1168 |
# Eggdrop encrypts its userfile, so users can have secure passwords. |
1169 |
# Please note that when you change your encryption method later (i.e. |
1170 |
# using other modules like a md5 module), you can't use your current |
1171 |
# userfile anymore. Eggdrop will not start without an encryption module. |
1172 |
#loadmodule blowfish |
1173 |
|
1174 |
|
1175 |
#### ASSOC MODULE #### |
1176 |
|
1177 |
# This module provides assoc support, i.e. naming channels on the botnet. |
1178 |
# You can load it by un-commenting the following line. |
1179 |
#loadmodule assoc |
1180 |
|
1181 |
#### WIRE MODULE #### |
1182 |
|
1183 |
# This module provides all the standard .wire commands via dcc. It is an |
1184 |
# encrypted partyline communication tool, compatible with wire.tcl. An |
1185 |
# encryption module must be loaded to use this module. Un-comment the |
1186 |
# following line to load the wire module. |
1187 |
#loadmodule wire |
1188 |
|
1189 |
#### UPTIME MODULE #### |
1190 |
|
1191 |
# This module reports uptime statistics to http://uptime.eggheads.org. |
1192 |
# Go look and see what your uptime is! It takes about 9 hours to show up, |
1193 |
# so if your bot isn't listed, try again later. |
1194 |
# |
1195 |
# Information sent to the server includes the bot's uptime, botnet-nick, |
1196 |
# server, version, and IP address. This information is stored in a temporary |
1197 |
# logfile for debugging purposes only. The only publicly available information |
1198 |
# will be the bot's botnet-nick, version and uptime. If you do not wish for this |
1199 |
# information to be sent, comment out the following line. |
1200 |
loadmodule uptime |
1201 |
|
1202 |
##### SCRIPTS ##### |
1203 |
|
1204 |
# This is a good place to load scripts to use with your bot. |
1205 |
|
1206 |
# This line loads script.tcl from the scripts directory inside your eggdrop's |
1207 |
# directory. All scripts should be put there, although you can place them where |
1208 |
# you like as long as you can supply a fully qualified path to them. |
1209 |
# |
1210 |
# source scripts/script.tcl |
1211 |
|
1212 |
source scripts/alltools.tcl |
1213 |
source scripts/action.fix.tcl |
1214 |
|
1215 |
# Use this script for Tcl and eggdrop downwards compatibility. |
1216 |
# NOTE: This can also cause problems with some newer scripts. |
1217 |
source scripts/compat.tcl |
1218 |
|
1219 |
# This script provides many useful informational functions, like setting |
1220 |
# users' URLs, e-mail address, ICQ numbers, etc. You can modify it to add |
1221 |
# extra entries |
1222 |
source scripts/userinfo.tcl |
1223 |
loadhelp userinfo.help |