littlewhitey's Server Forums (SA-MP/VC-MP)
		Other => Off-Topic => Technical Support => Topic started by: eDiT on May 12, 2009, 11:28:26 pm
		
			
			- 
				A mIRC nick alert script,
it will make a beep sound, and open a new window, displaying all the nick alerts you've recieved.
on *:Text:*your_irc_nickname*:#: {
  window @NickAlert
  aline @NickAlert $remove(( $time ), $chr(32)) 12 $nick  nick alerted you on 7 $chan  saying: 12 $1- $+
  beep
}
Put that in the 'Remote' tab in mIRC (you can press ALT+R).
If you want this to exclude a certain channel, simply do:
on *:Text:*eDiT*:#: {
  if ($chan != #channel) {
    window @NickAlert
    aline @NickAlert $remove(( $time ), $chr(32)) 12 $nick  nick alerted you on 7 $chan  saying: 12 $1- $+
    beep
  }
}
Enjoy!
edit: fixed the if function
			 
			
			- 
				Bump!
here mine :|
ON $*:TEXT:*:#: {
  var %alerter $nick
  if ($me isin $1-) && ($target != $active) {
    timer 1 .5 flash -r 10
    timer 1 .5 beep 10
    echo -ast 4 %alerter alerted you on $chan at $time $+ .
  }
}
			 
			
			- 
				All hail Miranda IM