Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 222483 | Differences between
and this patch

Collapse All | Expand All

(-)eggdrop.conf (-12 / +12 lines)
Lines 1-4 Link Here
1
#! /path/to/executable/eggdrop
1
#!/opt/eggdrop/eggdrop
2
# ^- This should contain a fully qualified path to your Eggdrop executable.
2
# ^- This should contain a fully qualified path to your Eggdrop executable.
3
#
3
#
4
# $Id: eggdrop.conf,v 1.47 2005-08-29 03:51:36 wcc Exp $
4
# $Id: eggdrop.conf,v 1.47 2005-08-29 03:51:36 wcc Exp $
Lines 23-29 Link Here
23
23
24
# This setting defines the username the bot uses on IRC. This setting has
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.
25
# no effect if an ident daemon is running on your bot's machine.
26
set username "lamest"
26
set username "eggdrop"
27
27
28
# This setting defines which contact person should be shown in .status,
28
# This setting defines which contact person should be shown in .status,
29
# /msg help, and other places. You really should include this information.
29
# /msg help, and other places. You really should include this information.
Lines 173-183 Link Here
173
##### FILES AND DIRECTORIES #####
173
##### FILES AND DIRECTORIES #####
174
174
175
# Specify here the filename your userfile should be saved as.
175
# Specify here the filename your userfile should be saved as.
176
set userfile "LamestBot.user"
176
set userfile "var/eggdrop.users"
177
177
178
# Specify here the filename Eggdrop will save its pid to. If no pidfile is
178
# Specify here the filename Eggdrop will save its pid to. If no pidfile is
179
# specified, pid.(botnet-nick) will be used.
179
# specified, pid.(botnet-nick) will be used.
180
#set pidfile "pid.LamestBot"
180
set pidfile "var/eggdrop.pid"
181
181
182
# If you want your userfile to be sorted upon saving, enable this setting.
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.
183
# This causes the bot to use bit more CPU when saving the usefile.
Lines 226-232 Link Here
226
# If you want to use a different nickname on the botnet than you use on
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
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.
228
# and set it to the nick you would like to use.
229
#set botnet-nick "LlamaBot"
229
set botnet-nick "eggdrop"
230
230
231
# This opens a telnet port by which you and other bots can interact with the
231
# This opens a telnet port by which you and other bots can interact with the
232
# Eggdrop by telneting in.
232
# Eggdrop by telneting in.
Lines 406-412 Link Here
406
# wrong channels, or generally do things that you do not want. Please make
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
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 :)
408
# lower down, just to make sure you're reading :)
409
die "Please make sure you edit your config file completely."
409
#die "Please make sure you edit your config file completely."
410
410
411
411
412
##### MODULES #####
412
##### MODULES #####
Lines 438-444 Link Here
438
loadmodule channels
438
loadmodule channels
439
439
440
# Enter here the filename where dynamic channel settings are stored.
440
# Enter here the filename where dynamic channel settings are stored.
441
set chanfile "LamestBot.chan"
441
set chanfile "var/eggdrop.chan"
442
442
443
# Set this setting to 1 if you want your bot to expire bans/exempts/invites set
443
# Set this setting to 1 if you want your bot to expire bans/exempts/invites set
444
# by other opped bots on the channel.
444
# by other opped bots on the channel.
Lines 776-791 Link Here
776
776
777
# Set the nick the bot uses on IRC, and on the botnet unless you specify a
777
# Set the nick the bot uses on IRC, and on the botnet unless you specify a
778
# separate botnet-nick, here.
778
# separate botnet-nick, here.
779
set nick "Lamestbot"
779
set nick "eggdrop"
780
780
781
# Set the alternative nick which the bot uses on IRC if the nick specified
781
# Set the alternative nick which the bot uses on IRC if the nick specified
782
# by 'set nick' is unavailable. All '?' characters will be replaced by random
782
# by 'set nick' is unavailable. All '?' characters will be replaced by random
783
# numbers.
783
# numbers.
784
set altnick "Llamab?t"
784
set altnick "birddrop"
785
785
786
# Set what should be displayed in the real-name field for the bot on IRC.
786
# Set what should be displayed in the real-name field for the bot on IRC.
787
# This can not be blank, it has to contain something.
787
# This can not be blank, it has to contain something.
788
set realname "/msg LamestBot hello"
788
set realname "/msg eggdrop hello"
789
789
790
# This is a Tcl script to be run immediately after connecting to a server.
790
# This is a Tcl script to be run immediately after connecting to a server.
791
bind evnt - init-server evnt:init_server
791
bind evnt - init-server evnt:init_server
Lines 1227-1233 Link Here
1227
loadmodule notes
1227
loadmodule notes
1228
1228
1229
# Set here the filename where private notes between users are stored.
1229
# Set here the filename where private notes between users are stored.
1230
set notefile "LamestBot.notes"
1230
set notefile "var/eggdrop.notes"
1231
1231
1232
# Set here the maximum number of notes to allow to be stored for each user
1232
# Set here the maximum number of notes to allow to be stored for each user
1233
# (to prevent flooding).
1233
# (to prevent flooding).
Lines 1249-1255 Link Here
1249
set notify-onjoin 1
1249
set notify-onjoin 1
1250
1250
1251
# Comment out this next line. Otherwise, your bot won't start.
1251
# Comment out this next line. Otherwise, your bot won't start.
1252
die "You didn't edit your config file completely like you were told, did you?"
1252
#die "You didn't edit your config file completely like you were told, did you?"
1253
1253
1254
1254
1255
#### CONSOLE MODULE ####
1255
#### CONSOLE MODULE ####

Return to bug 222483