Guest User

Untitled

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