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.

I don't want get opped by my bots

Old posts that have not been replied to for several years.
Locked
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

I don't want get opped by my bots

Post by Sloop »

Hi @ll,

I have a hub bot and a aggressive share bot linked together. They are both on the same channel.

When I enter this channel I alway get opped by my bots! This is annoying because you can imagine:

ChanServ sets mode +o Sloop
Bot1 sets mode +o Sloop
Bot2 sets mode +o Sloop

I don't need my bots to op me, because ChanServ is doing that already.
I have edited the 2 config files and choosed -autoop and on boths bots I did remove the flag 'a' of my user "Sloop".

But I still get opped, WHY??!?! Please help?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

given your previous problems and the way you resolved the issues, I'd bet you messed up some silly little thing... again :)

double-check autoop setting for that channel and your flags, also the scripts you use - maybe it is some lame script that autoops you
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

Post by Sloop »

When I am on partyline I can switch off autoop for that channel with .chanset #asprovalta -autoop

That worked! But what if I want autoops enabled, but I do not want autoop ME !!! :) Although I do not have the +a flag, I am getting autoop. When I tried to remove the flag -o also it didn't worked. The +o still remains there in my user info.

Maybe I am still getting auto-opped because I am the Owner & Master (+n +m) ??? How could I fix that, not to get auto-ops???

PS: The other problem before was a character which I had to put a backslash before, it was wrong interpreted :)
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

you should have started with that weird desire of yours - to have every +o autoopped but yourself

and no, you can't have that
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

demond is correct although if I remember right you can stop yourself from being opped by giving yourself the +d flag, but this will result in a war between chanserv and your bots when chanserve ops you your bots will keep trying to deop you.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

he's an owner, I don't believe +d has any effect on +n (if at all possible to set with +n)

the solution would be channel setting -autoop plus a script that autoops any +o user but our weird friend
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

demond wrote:he's an owner, I don't believe +d has any effect on +n (if at all possible to set with +n)

the solution would be channel setting -autoop plus a script that autoops any +o user but our weird friend
haha weird friend. I used to use +d on myself to stop the bots auto opping me in channels that didnt belong to me as I supplied the bots for people. But that was a while ago maybe thats been removed in later versions.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
S
Sloop
Halfop
Posts: 44
Joined: Tue Jul 12, 2005 7:04 pm

Post by Sloop »

demond wrote: the solution would be channel setting -autoop plus a script that autoops any +o user but our weird friend
Fine, but I need to remove my 'o' flag then, and this didn't worked either. When I do ".chattr Sloop -o" the o flag still remains.
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

nope, you need to chanset -autoop and this:

Code: Select all

bind join * - foo
proc foo {n u h c} {
   if {[matchattr $h o|o $c] && $h != "Sloop"} {
      pushmode $c +o $n
   }
}
Locked