mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2003
Posts: 2
D
Dracoo Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
D
Joined: Dec 2003
Posts: 2
Hi there!
In my network we use UnrealIRCd3.2, and I've noticed a bug using mIRC.
If a user has the chmode +a or +q, the channel list of his WhoIs shows some "strange" prefixes, that is ^ (for +a) and * (for +q).
Besides there are others "strange prefixes" like ? and !, which appear to IRCops only.
The first appears when the channel is secret or private, the second when the user has the umode +p (that hide the channel list in the whois to normal users). Can be also a combination of these prefixes, for exampe if a user has the chmode +q in the channel #mIRC, and the same channel is +s and moreover the user has the umode +p, in his Whois, an IRCop, will see ?!*#mIRC.

The "bug" is that if I doubleclick on a channel with these prefixes, I won't join it... there's a solution to this problem?

bye
Dracoo

Joined: Oct 2003
Posts: 214
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Oct 2003
Posts: 214
You can use a workaround for this, a hotlink event.

/help on hotlink


Here is the Code:
Code:
on ^*:hotlink:*:*:{
  if ($regex($1,/(\^|!|\*|\?|@|%|\+)#/)) { return }
  else { halt }
}
on *:hotlink:*:*:{
  if ($regex($1,/(\^|!|\*|\?|@|%|\+)#/)) {
    var %c = ! * ^ ? @ % + 
    while ($istok(%c,$left($1,1),32)) { tokenize 32 $right($1,-1) }
    join $$iif($regml(1),$1)
  }
}

I don't know if it works 100%


one step closer to world domination
Joined: Dec 2002
Posts: 346
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Dec 2002
Posts: 346
This could be worked around if unreal added the flags to their PREFIX=, after the flags that have a corresponding +mode. eg:

PREFIX=(ohv)@%+-

Adds the standard op, halfop and voice modes, and a 'modeless' flag for - (which is usually a 'deaf' client). I haven't used the unrealircd prefixes here as I am not sure of them.

I'm not certain if the above works well with clients other than mIRC. The above may have undesirable effects on NAMES and nickname hotlinking however (usually if a flag conflicts), which could explain why it is yet to be implemented.

Hope that helps smile


Link Copied to Clipboard