mIRC Home    About    Download    Register    News    Help

Print Thread
#126694 03/08/05 09:36 PM
Joined: Apr 2005
Posts: 1,009
raZOR Offline OP
Hoopy frood
OP Offline
Hoopy frood
Joined: Apr 2005
Posts: 1,009
greets

can anyone tell me WHAT do i need to do
to make mirc on start to run debug window INVISIBLE (in background) and to write log file constantly (like channel logs)
but with 2 conditions

1. to write and write and NEVER to be cleaned (log) - so when i for instance reboot pc and start mirc again, that log doesnt erase but it continues to write

2. NOT to write (log) user messages in channels but only (if possible) only mode sets and server messages (like notice, raws and such)

would apreciate help very much


IceCapped
#126695 03/08/05 10:21 PM
Joined: Jan 2005
Posts: 192
Vogon poet
Offline
Vogon poet
Joined: Jan 2005
Posts: 192
maybe something in direction of....

Code:
on 1:start: {
window -hn @debug
debug -pt @debug
log on @debug -f $logdir\debug.log
}


or if there are multiple servers in use...

Code:
on 1:connect: {
window -hn @debug- $+ $network
debug -pt @debug- $+ $network
log on @debug $+ $network -f $logdir\debug- $+ $network.log
}


To remove user messages... hmm
Only thing I can think so quick is maybe /filter but it will be be slower and slower as the log will grow...
Maybe someone else have better ideas...


echo -a $signature
#126696 04/08/05 12:17 AM
Joined: Apr 2005
Posts: 1,009
raZOR Offline OP
Hoopy frood
OP Offline
Hoopy frood
Joined: Apr 2005
Posts: 1,009
thanks for reply, i like this code+idea and will use it.

now i just ask someone who knows this last request if it is possible (to remove user messages)

and side note if it can be compatible with mirc 6.03



thanks who ever helps me


IceCapped

Link Copied to Clipboard