|
|
| Author |
Message |
KuruptAnthony none

Joined: 16 Apr 2004 Posts: 3
|
Posted: Apr 16, 2004 6:42pm Post subject: Unreal 3.2 AutoOp |
|
|
| Is there a way to set an administrator as user mode +q n all rooms? |
|
| Back to top |
|
 |
Cobi Lurker

Joined: 30 Dec 2003 Posts: 121 Location: IRC
|
Posted: Apr 16, 2004 7:07pm Post subject: yeah... |
|
|
if you run mirc:
| Code: | | on *:JOIN:#:{ if ($nick == $me) { mode $chan +q $me } } |
if you run anope:
| Code: | | /msg operserv set superadmin on |
if you run mirc and want it to look like the server set the mode:
| Code: | | on *:JOIN:#:{ if ($nick == $me) { samode $chan +q $me } } |
works nicely... but really... why would you want an ircop(+a or +A or +N) to get +q in every channel he joins... when he can kick/ban/op/deop etc... without being opped at all?[/code] |
|
| Back to top |
|
 |
uchat Idler

Joined: 17 Mar 2004 Posts: 335
|
Posted: Apr 17, 2004 8:37am Post subject: |
|
|
Admin can type:
| Code: |
/mode their-nick +q
|
| Code: |
(:(10:36):) * katsklaw sets mode: +q
(:(10:37):) * Joins: katsklaw (katsklaw@u-chat.org)
(:(10:37):) * katsklone sets mode: +b *!*katsklaw@u-chat.org
(:(10:37):) * katsklone sets mode: +b *!*@u-chat.org
|
in katsklone's status window is this:
| Code: |
(:(10:37):) *** Cannot kick katsklaw from channel #blah (usermode +q)
#blah Cannot kick protected user katsklaw.
|
in katsklaw's status window is this:
| Code: |
(:(10:37):) *** Q: katsklone tried to kick you from channel #blah (Come back when you can't stay as long.)
|
You don't need a script to do any of this, it's part of Unreal. For this demo, #blah was set chanmode +nt, katsklone was opped, katsklaw was not. |
|
| Back to top |
|
 |
Pierce none

Joined: 09 Feb 2004 Posts: 47
|
Posted: Apr 18, 2004 7:40am Post subject: |
|
|
if you have anope services you could do /os set superadmin on which would then give you +qo in every room
if you use Auspice IRCD services, and your master, you could do /cs identify #Chan FORCE
the other way where you do /mode $chan +qo $me
would mean you oper-override everytime
Pierce |
|
| Back to top |
|
 |
uchat Idler

Joined: 17 Mar 2004 Posts: 335
|
Posted: Apr 18, 2004 7:45am Post subject: |
|
|
| Quote: |
if you have anope services you could do /os set superadmin on which would then give you +qo in every room
|
Your not paying attention.
| Code: | /mode admin's-nick +q
|
makes it GLOBAL (as in all channels) regardless of which services you use.
If you include a channel name, it's only for that channel (channel founders can use that.) if you do NOT include the channel, then it's for *ALL* channels. |
|
| Back to top |
|
 |
Pierce none

Joined: 09 Feb 2004 Posts: 47
|
Posted: Apr 18, 2004 7:48am Post subject: |
|
|
true true, but giving the other way if you had services, rather than oper-overiding all the time
Pierce |
|
| Back to top |
|
 |
uchat Idler

Joined: 17 Mar 2004 Posts: 335
|
Posted: Apr 18, 2004 7:57am Post subject: |
|
|
Usermodes are controlled though the IRCd .. not services. If you have services give you any modes at all, it's nothing more than services doing the typing instead of you.
there is absolutely no difference between:
and
| Code: |
/operserv mode katsklaw +q
|
or
| Code: |
/operserv raw svsmode katsklaw +q
|
*ALL* usermodes are assigned by the IRCd. |
|
| Back to top |
|
 |
Pierce none

Joined: 09 Feb 2004 Posts: 47
|
Posted: Apr 18, 2004 8:04am Post subject: |
|
|
hmm, true but you didnt pay attention
i said /os set superadmin on
which in anope will give you +qo every time you join ANY chan on the network, services wont do the typing, and the ricd will do nothing
instead services will recongnise you as the founder of every chan and give you the modes accordingly
Pierce |
|
| Back to top |
|
 |
uchat Idler

Joined: 17 Mar 2004 Posts: 335
|
Posted: Apr 18, 2004 8:13am Post subject: |
|
|
Yes i did pay attention.
The original poster never stated WHICH set of Services that they use. He only asked how to set it for all channels. SuperAdmin don't come with all versions of IRC Services.
My whole point is that if you use '/mode nick +q' you will get GLOBAL +q access regardless of which set of Services you are using .. including no Services at all. |
|
| Back to top |
|
 |
Cobi Lurker

Joined: 30 Dec 2003 Posts: 121 Location: IRC
|
Posted: Apr 18, 2004 3:17pm Post subject: hrm..,. |
|
|
| it wont show up as a ~ or @... if thats what they are after... |
|
| Back to top |
|
 |
uchat Idler

Joined: 17 Mar 2004 Posts: 335
|
Posted: Apr 18, 2004 3:38pm Post subject: |
|
|
That's true it won't ... however I'm not sure if that's what they were looking for or not .. I was just answering their question.  |
|
| Back to top |
|
 |
|