mIRC Home    About    Download    Register    News    Help

Print Thread
A
Anonymous
Unregistered
Anonymous
Unregistered
A
i do a whois on some one and this text appears:
Quote:

mynick is [email]HisUserid@HisIPaddress[/email] * hisRealName
mynick is a registred nick
mynick on #hischannel
mynick using irc.hisserver.com
mynick has been idle 33secs, signed on Mon Jul 11 10:57:07
mynick End of /WHOIS list.

well anyway, the server has chanserv/nickserv commands.
i user raw commands to customize the text and now it appears like this:

Quote:

[12:26:03] ••• ···························································
[12:26:03] ••• mynick is [email]HisUserid@HisIPaddress[/email]
[12:26:03] ••• mynick is «hisRealName»
mynick is a registred nick
[12:26:03] ••• mynick on #hischannel
[12:26:03] ••• mynick on irc.hisServer.com
[12:26:03] ••• mynick idle 28secs
[12:26:03] ••• ···························································

however i can not find the raw reply for "mynick is a registred nick" so i can't modify it and as you cand see it looks really really ugly smile . the script code so far is
Code:
; start modifying the whois reply
raw 311:*: {
  echo $timestamp ••• ··························································
  echo $timestamp ••• $2 is  $+ $3 $+  $+ @ $+ $4 $+ 
  echo $timestamp ••• $2 is «12 $+ $6- $+ »
  haltdef
}
raw 312:*: echo $timestamp ••• $2 on $3 | haltdef
raw 313:*: echo $timestamp ••• $2 $3- | haltdef
raw 317:*: echo $timestamp ••• $2 idle 12 $+ $duration($3,1) $+  | haltdef
raw 319:*: echo $timestamp ••• $2 on $3- | haltdef
raw 318:*: echo $timestamp ••• ························································· | haltdef
; end of whois reply


how can i find the raw numeric reply for that line (with nickserv, the one that isn't customized) ?

Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
1) Type /debug @debug

2) /Whois someone that is identified to their nickname.

3) Look in the @debug window for all the /whois raws.

Regards,


Mentality/Chris
A
Anonymous
Unregistered
Anonymous
Unregistered
A
thank you very much. this helps a lot!!
(the raw numeric reply was 307)


Link Copied to Clipboard