mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Aug 2003
Posts: 1
I
Mostly harmless
OP Offline
Mostly harmless
I
Joined: Aug 2003
Posts: 1
Is it possible to tell if someone in the same channel is performing a lookup on me?

If so, how?

Joined: Feb 2003
Posts: 309
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Feb 2003
Posts: 309
Sadly this isn't really something you get to know unlesss your an ircop or for some reason the server lets you know about it.

Whois information comes straight from teh server unlike CTCP versions, pings, etc; so ordinarily you can't get this info.

I heard of one or two networks giving the raw on a whouis thingy to the everyday cahtter; but i can't fo r the life of me remember which ones.

Joined: May 2003
Posts: 161
A
Vogon poet
Offline
Vogon poet
A
Joined: May 2003
Posts: 161
Unreal IRCD has usermode +W which makes the server send you a notice when you get whoised; however, the mode is only available to opers.

Joined: Jul 2003
Posts: 132
O
Vogon poet
Offline
Vogon poet
O
Joined: Jul 2003
Posts: 132
same crap on ConferenceRoom opers only have that too only mode is +y

Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
If you are an IRCop use this event..
Code:
on ^1:snotice:*: {
  haltdef
  if (whois on you isin $1- ) { echo $colour(notice text) -at *** Your whois was checked by: $1 $2 | halt }
}

Joined: Dec 2002
Posts: 1,527
_
Hoopy frood
Offline
Hoopy frood
_
Joined: Dec 2002
Posts: 1,527
i dont think anyone neds that event to see a whois if they are an ircop


D3m0nnet.com
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Ya, but still... grin

Joined: Dec 2002
Posts: 1,527
_
Hoopy frood
Offline
Hoopy frood
_
Joined: Dec 2002
Posts: 1,527
not to mention the fact ur using both hatdef and halt in there ... seems a bit of an overstatement


D3m0nnet.com
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
I took that bit of code from my script; there was other code in that event.. I forgot to take out the halt ..

Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Actually it would be better to take out the haltdef so you didn't stop all SNOTICES being displayed except the whois one.


Link Copied to Clipboard