This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Configuration and start up issues

Old posts that have not been replied to for several years.
Locked
G
Guest

Post by Guest »

I have eggdrop running just fine,but there are two things I want it to do simulaneously and I just can't seem to figure out how to get it to do this.

I want it, upon starting, to automatically identify itself with nickserv BEFORE it joins any channels so that chanserv is able to give it op priviledges when it shows up in channel.

I can get it to identify itself, but only AFTER it has joined a channel (use the need-op line to do this). This is fine, but I have to punt it out of the room and have it rejoin the room for op status to be provided. Only other recourse is for me to be there to GIVE it ops status...but this does not provide the same protection as if chanserv provides the opping.

Only other thing I would like is for there to be an easy way to manage multiple rooms that the bot is in. Since I run an entire server, I want the bot to be in EVERY room that I create. There a way to clone the settings for the rooms from one set of entries? ie default channel settings?

Any help on any of this would be appreciated. Been up now for over 36 hours and I'm getting a little disoriented. :smile:
W
Wcc
Master
Posts: 278
Joined: Sun Oct 28, 2001 8:00 pm
Location: USA
Contact:

Post by Wcc »

For the 1st problem, add this to the end of your config file:

Code: Select all

bind evnt - init-server evnt:identify

proc evnt:identify {type} {
  putquick "PRIVMSG nickserv :identify <password>"
}
For the second problem, read about global channel settings in
doc/settings/mod.channels.
Locked