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.

New to eggdrop (need to kill oper abilities)

Old posts that have not been replied to for several years.
Locked
F
Fixxxer

New to eggdrop (need to kill oper abilities)

Post by Fixxxer »

I actually have Windrop (Eggdrop v1.6.8 Handlen32 edition) and am intending on using it in an irc net that has chanserv and nickserv.

I simply want to use it as an info bot and perhaps some humorous entertainment.

I do not need the bot to be any kind of oper. I do not need him to ban, kick, police a channel or do anything of the sort.

Is there a way for me to totally shut down these on the bot? Right now he is trying to oper and I need him to stop.

thanks
t
tainted
Master
Posts: 239
Joined: Sun May 12, 2002 8:00 pm
Location: chicago
Contact:

Post by tainted »

You could track down each bind and unbind it, but a better way would be to just not give it ops.
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

There are 2 types of opper (as you call them) on IRC.

One is a opper - this person has the power, to kick and ban people off servers.

And a OP - This is what you are on about.

Eggdrop is designed for channel control. That is what it's internal goal is.

The best thing you can do, is to remove the message being sent to the channel, regarding wanting OP's, and to disable/dumb down the settings for a channel (see ".help chaninfo" an ".help chanset" in the partyline).
F
Fixxxer

Thanks, one more Q

Post by Fixxxer »

OK thanks, I will give it a try.

On another note, I can not find a good auto-ID script that works.

I need the Bot to ID itself with NickServ at start up and after netsplits.

/ns identify password
/identify password

This Nickserv accepts both of the above two commands.

Any suggestions?
W
Weirdo
Master
Posts: 265
Joined: Sat Apr 27, 2002 8:00 pm
Location: Manchester, England

Post by Weirdo »

Code: Select all

#This is the procedure which is run during connect
proc identconnect {init-server} {
	global pass
	putserv "Privmsg Nickserv :Identify $pass"
	putserv "Privmsg Chanserv :Op ALL"
	putcmdlog "Nickserv On Connect Identify Attempted"
}
That is what i use for my bot's on connect script :)

Adjust as you want
Locked