mIRC Home    About    Download    Register    News    Help

Print Thread
#49191 13/09/03 03:01 PM
Joined: Dec 2002
Posts: 204
K
keeker Offline OP
Fjord artisan
OP Offline
Fjord artisan
K
Joined: Dec 2002
Posts: 204
little question, i have this snippet for catching all notices that come TO me, but was wondering if there is a way to catch all notices FROM me also, would i have to go through every single script i have loaded and add an aline to each /notice line i see?


keek: Scots - intr.v. keeked, keekĀ·ing, keeks
To peek; peep.
#49192 13/09/03 03:14 PM
Joined: Jun 2003
Posts: 242
R
Fjord artisan
Offline
Fjord artisan
R
Joined: Jun 2003
Posts: 242
lol probably .. or make something to monitor a /debug window or file to catch it.

or u could use this
Code:
alias notice {
  write notices.txt $1-
  $iif($show,!notice,!.notice) $1-
}

Last edited by r0ck0; 13/09/03 03:20 PM.
#49193 13/09/03 03:19 PM
Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
Code:
alias notice {
  if (!$window(@notices)) { window -h @notices }
  !notice $1 $2-
  aline @notices $+([,$time(hh:nn:ss),]) $+($me,:) -> $1 $2-
}

when you want to look in the notices window type: /window -w @notices, or view it from the windows list.


new username: tidy_trax
#49194 13/09/03 03:22 PM
Joined: Jun 2003
Posts: 242
R
Fjord artisan
Offline
Fjord artisan
R
Joined: Jun 2003
Posts: 242
or that one smile


Link Copied to Clipboard