mIRC Homepage
Posted By: truguce on raw to window - 06/03/06 06:06 AM
Can someone please help on this. I am trying to get all on raw notices to goto a seperate window so i can see what happens on my network. Right now I have this
Code:
raw *:*: echo -s $numeric $1-  

I want to see everything that happens but is getting mixed up with the other studd on the status screen. Thanks for the help!!!
Posted By: hixxy Re: on raw to window - 06/03/06 06:08 AM
Use the /debug command: /debug @debug

If you want *only* raws to go to a separate window then try something like this:

Code:
raw *:*:{
  if ($window(@raws)) aline @raws $numeric ~ $1-
}


Then whenever you want to see the raws just type /window @raws
Posted By: SoundreameR Re: on raw to window - 07/03/06 06:40 PM
Why don't you use /debug??? shocked
Posted By: truguce Re: on raw to window - 08/03/06 02:56 AM
because it gives me everything going on in the 18 channels that im in. I just want to see the raw mesages.
Posted By: genius_at_work Re: on raw to window - 08/03/06 04:03 AM
/debug shows raw messages. That is what it is designed to do. Raw messages are all messages that are sent between the IRC server and your client, and the debug command shows them exactly as they are being sent to and received from the server.

If you want to see all the messages for a certain channel, you can try code like this:

Code:
on *:TEXT:*:#channel:showraw
on *:ACTION:*:#channel:showraw
on *:NOTICE:*:#channel:showraw
on *:JOIN:#channel:showraw
on *:PART:#channel:showraw
on *:KICK:#channel:showraw
on *:NICK:#channel:showraw
on *:RAWMODE:#channel:showraw
on ^*:QUIT:if ($nick ison #channel) showraw

alias -l showraw {
window @raws
aline -hpi @raws $timestamp $rawmsg
}

(untested)

Change the #channel's to your channel name.

-genius_at_work
© mIRC Discussion Forums