mIRC Home    About    Download    Register    News    Help

Print Thread
#1285 12/12/02 05:25 AM
Joined: Dec 2002
Posts: 2
W
wut4 Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
W
Joined: Dec 2002
Posts: 2
There is a new mode in the ircd being developed at www.neostats.com that uses an ! for operators. The problem this creates for mIRC users is that when the person leaves the nickname remains in the channel because mIRC thinks the ! is part of the nick and !somenick hasn't left yet.

Clicking in the nicklist to do a whois also does a whois on !somenick rather than somenick. This can be fixed with a script obviously.
Whois:{
if ( ! isin $$1 ) {
/whois $remove($$1,!)
}
else /whois $$1
}

The @ is still used, it's just that the ! gives more power in channels than @.


irc.watchserv.com
#1286 12/12/02 09:36 AM
Joined: Dec 2002
Posts: 66
Babel fish
Offline
Babel fish
Joined: Dec 2002
Posts: 66
Shouldn't the IRCd send this info in the 005 numeric token ??


- Linux System Administrator, Darktides Communications, LLC.
#1287 19/12/02 04:15 AM
Joined: Dec 2002
Posts: 35
T
Ameglian cow
Offline
Ameglian cow
T
Joined: Dec 2002
Posts: 35
The bug is not in mIRC, it's in that server implementation. It does something non-standard in a non-portable way.

They should implement that mode in a way that wouldn't break existing IRC client implementations.

(or not call it ircd at all)

#1288 22/12/02 07:38 AM
Joined: Dec 2002
Posts: 2
W
wut4 Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
W
Joined: Dec 2002
Posts: 2
I got together with one of the coders of NeoIRCd and ran some testing with various versions of mIRC since the 005 numeric is coded in the ircd. We found that the new version of mIRC does support it, however prior versions do not.

I appreciate your responses.


irc.watchserv.com

Link Copied to Clipboard