mIRC Home    About    Download    Register    News    Help

Print Thread
#184232 26/08/07 06:44 PM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
I use rawmode, then filter it for my theme, how ever i noticed that +ao arent filtered out as a op, i tested to echo the mode to me self with echo -a -> $1
Code:
on ^*:rawmode:#: {
  haltdef
  if (+o isin $1) { themeop | if (%colnick_ == enabled) { upd-clienc } }
  elseif (-o isin $1) { themeop | if (%colnick_ == enabled) { upd-clienc } }
  elseif (+v isin $1) { themevo | if (%colnick_ == enabled) { upd-clienc } }
  elseif (-v isin $1) { themevo | if (%colnick_ == enabled) { upd-clienc } }
  echo -a -> $1
}

and when a person get the status +ao in a channel, thats the & sign instead of @, then the code return nothing, how ever i was looking for the levels you can have in a channel on unreal.ircd, and i couldent find any good explanation to it, i want to know what +ao ( & sign ) is called, same with the ( ~ ), i havent been able to catch someone that joined with that status, so i havent been able to see what they get in the channel, but i guess it's a channel owner or something? smile so i belive the right string would be: server sets mode: +ao nick ?


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #184233 26/08/07 06:48 PM
Joined: May 2004
Posts: 49
G
Ameglian cow
Offline
Ameglian cow
G
Joined: May 2004
Posts: 49
well I know that ~ is +q. But thats all I know :P


Signature:
I'm boring, ain't I? Oh well...:|
GalaxeY #184235 26/08/07 06:51 PM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
only +q ? not +qo ? havent been able to catch someone that joining with the mode so cant check if it's +qo or +q smile


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
sparta #184237 26/08/07 06:53 PM
Joined: May 2004
Posts: 49
G
Ameglian cow
Offline
Ameglian cow
G
Joined: May 2004
Posts: 49
+q is a channel founder in unreal


Signature:
I'm boring, ain't I? Oh well...:|
sparta #184238 26/08/07 06:58 PM
Joined: Nov 2006
Posts: 1,559
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Nov 2006
Posts: 1,559
To associate these nick prefix chars with modes, type: //echo -a $nickmode $prefix ... the meaning of the modes on unreal is explained here.
Therefore, (on unreal IRCD) +ao grants the user channel operator and channel administrator status, admin being higher than op. His pnick would be &@NICK .

Edit: Most Services use to set the +o if they set +a or +q, but you might always drop a mode, get +a having +o etc. So, +a -a +q -q +qh-o -qv etc are possible smile

Last edited by Horstl; 26/08/07 07:02 PM.
Horstl #184239 26/08/07 07:05 PM
Joined: Feb 2003
Posts: 3,432
S
sparta Offline OP
Hoopy frood
OP Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
thank you smile problem solved for now wink


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard