mIRC Home    About    Download    Register    News    Help

Print Thread
#128916 31/08/05 06:12 AM
Joined: Feb 2005
Posts: 344
B
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
I was on a server some time ago and on a whois I got some info in my status screen.
the info was this :

nickname prefers to speak in english.
nickname has profanity filtering enabled.

Anyone any idea what raw this is?
I'd love to have it in my whois script.

#128917 31/08/05 06:52 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
This sounds like something that's specific to that server, rather than being a general raw

If you want to find out what the raw is you could try this
Code:
raw *:*:{ .echo -a $numeric } 

Put that into a remote file, then do a whois on the person
You will get back more responses than just the RAW you're looking for, because you'll also get the RAW numerics for the standard whois response

For more help with raws try visiting RAW numerics

#128918 31/08/05 07:05 AM
Joined: Aug 2005
Posts: 39
B
Ameglian cow
Offline
Ameglian cow
B
Joined: Aug 2005
Posts: 39
or try /debug @debug
and you'll see in the new window all the events

#128919 31/08/05 07:44 AM
Joined: Feb 2005
Posts: 344
B
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
thanks russel

#128920 31/08/05 12:53 PM
Joined: Jul 2005
Posts: 25
U
Ameglian cow
Offline
Ameglian cow
U
Joined: Jul 2005
Posts: 25
Code:
raw *:*:{
  if (!$window(@raws)) window @raws
  aline @Raws Raw $numeric : 
  Orginal Message : $1-
  var %i 1
  while ($gettok($1-,%i,32)) {
    aline @raws $+($,%i,:) $ifmatch
    inc %i
  }
}

#128921 06/09/05 11:51 AM
Joined: Jul 2005
Posts: 25
U
Ameglian cow
Offline
Ameglian cow
U
Joined: Jul 2005
Posts: 25
Soryy smile
The Right code :

Code:
raw *:*:{
  if (!$window(@raws)) window @raws
  aline @Raws Raw $numeric :
  aline @Raws Orginal Message : $1-
  var %i 1
  while ($gettok($1-,%i,32)) {
    aline @raws $+($,%i,:) $ifmatch
    inc %i
  }
}


Link Copied to Clipboard