mIRC Homepage
Posted By: Jay_T private - 29/04/03 03:25 PM
hi anyone has code that if someone private me and my mirc will echo the query message in active window? thanks in advance
Posted By: RoCk Re: private - 29/04/03 03:38 PM
mIRC Options > IRC
In "Show in active:" box, check "Queries"

Edit: this will only echo to active window if there is no open query window for nick

or

on *:TEXT:*:?:echo $colour(normal) -at $+(<,$nick,@Query>) $1-
on *:ACTION:*:?:echo $colour(action) -at * $+($nick,@Query) $1-
Posted By: Othello Re: private - 29/04/03 08:28 PM
You will have to put a ON/OFF switch in the channel to enable or disable %msgscreen

Code:
  [color:red]
ON *:OPEN:*:?: { 
  if ( %msgscreen == ON ) {
    echo -a 1 »14»15» 12Msg Screen: $nick is trying to msg you 14(2 $+ $strip($1-) $+ 14)
    beep 5 50 
  }
}
ON *:TEXT:*:?: { 
  if ( %msgscreen == ON ) {
    echo -a 1 »14»15» 12Msg Screen: $nick is trying to msg you 14(2 $+ $strip($1-) $+ 14)
    beep 5 50 
  }
}
ON *:ACTION:*:?: { 
  if ( %msgscreen == ON ) {
    echo -a 1 »14»15» 12Msg Screen: $nick is trying to msg you 14(2 $+ $strip($1-) $+ 14)
    beep 5 50 
  }
}
  [/color]  
© mIRC Discussion Forums