mIRC Home    About    Download    Register    News    Help

Print Thread
#144107 06/03/06 06:06 AM
Joined: Oct 2005
Posts: 91
T
truguce Offline OP
Babel fish
OP Offline
Babel fish
T
Joined: Oct 2005
Posts: 91
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!!!

#144108 06/03/06 06:08 AM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
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

#144109 07/03/06 06:40 PM
Joined: Jan 2006
Posts: 64
S
Babel fish
Offline
Babel fish
S
Joined: Jan 2006
Posts: 64
Why don't you use /debug??? shocked

#144110 08/03/06 02:56 AM
Joined: Oct 2005
Posts: 91
T
truguce Offline OP
Babel fish
OP Offline
Babel fish
T
Joined: Oct 2005
Posts: 91
because it gives me everything going on in the 18 channels that im in. I just want to see the raw mesages.

#144111 08/03/06 04:03 AM
Joined: Oct 2005
Posts: 1,741
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,741
/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


Link Copied to Clipboard