mIRC Home    About    Download    Register    News    Help

Print Thread
#20965 26/04/03 03:07 PM
Joined: Apr 2003
Posts: 1
F
Mostly harmless
OP Offline
Mostly harmless
F
Joined: Apr 2003
Posts: 1
Well, in normal mIRC, when a nick private msg you, the mirc is automaticly added to the switchbar, with the color you have chose in the options.
I'm using my own Switch bar, and is there a way to know if you have checked the msg or not?

#20966 27/04/03 01:04 AM
Joined: Mar 2003
Posts: 272
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Mar 2003
Posts: 272
Well you can just use the ON OPEN, which will trigger when a new query window opens, or the ON MSG event, for every incoming message received. What i'd do is a combination of timer and ON OPEN, such as this:
Code:
On 1:OPEN:?:{ set %query $nick | .timercheckpm 100 1 checkpm }
alias checkpm {
  if ($nick = $active) { echo -a You clicked on the $nick query window! | .timercheckpm off }
  else { return }
}


- cF
Dedicated helper for rent.

Link Copied to Clipboard