Page 1 of 1
AutoOp
Posted: Sat Apr 17, 2004 1:34 am
by Anthony
How do I make it so that an administrator is automatically set as +q when they enter the room.
I am running Unreal 3.2 and Anope services. SuperAdmin isn't working.
Posted: Sat Apr 17, 2004 1:36 am
by codemastr
You don't.
Posted: Sat Apr 17, 2004 1:38 am
by Anthony
I know there is a way to do it....
Just if operserv don't work, I am screwed?
Posted: Sat Apr 17, 2004 1:52 am
by codemastr
No, there is no way to do it. Unreal has no "op on join" feature, and Anope will only give you +q if you are /cs identify'ed to the channel.
Administrators run the server, not the channels. They aren't supposed to have +q in channels.
Posted: Sat Apr 17, 2004 10:33 am
by Cable
You need to do /os set superadmin on, if it doesn't work make sure superadmin is enabled in services.conf
Posted: Sun Apr 18, 2004 3:50 am
by Anthony
I can never get it to work.
Posted: Sun Apr 18, 2004 7:09 am
by Cable
look for #SuperAdmin in services.conf and then take the # and restart services
Posted: Sun Apr 18, 2004 5:42 pm
by aquanight
One of the admins on a network I frequent uses a script to make sure he is always &@ on a channel. (Once he joined a channel I had ~ and secureops was on. For a straight 15sec or so, the channel was flooded with modechanges; the bot -hoaq'd him and he +ao'd himself. Secureops didn't like and tried the -hoaq again. Guess what? He +ao's himself and the loop goes on.)
I think this is a rough estimate of the script used. Beware of SecureOps!
Code: Select all
on *:JOIN:#:{
if ($nick == $me)
mode # +qo $me $me
}
}
on *:DEOP:#:{
if ($nick == $me)
mode # +qo $me $me
}
}
You need can_override in your operflags or else you need services-admin/netadmin and change the 'mode' to 'samode'
Posted: Sun Apr 18, 2004 5:46 pm
by katsklaw
In Unreal you use 'can_overide' in the oper block then set yourself +q by typing '/mode your-nick +q'
This will make you +q globally.
However, this really isn't needed since as an Admin you have more power than the Channel Ops. All +q does is stop you from being kick/banned, which if the ChanOps ban you .. you should respect their wishes and be banned.