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