Quote:
Originally posted by MonsterDK
yer... something like that maybe you can write a handy tcl ?
you seem to know that to do.... and i'm sure others will be thankful for it as well
|
Actually you can do it using eggdrop itself, just add it in the eggdrop.conf
Code:
channel add #TheChannel {
chanmode "+ntisp"
idle-kick 0
stopnethack-mode 0
revenge-mode 0
need-op { putserv "PRIVMSG ChanServ :OP #TheChannel" }
need-invite { putserv "PRIVMSG ChanServ :INVITE #TheChannel" }
need-key { putserv "PRIVMSG ChanServ :INVITE #TheChannel" }
need-unban { putserv "PRIVMSG ChanServ :UNBAN #TheChannel" }
need-limit { putserv "PRIVMSG ChanServ :INVITE #TheChannel" }
}
All your bot needs to do is identify to NickServ first, if you need a NickServ script there's plenty here:
http://www.egghelp.org/tcl.htm - Look under the 'Services Scripts' section.