littlewhitey's Servers Forum (SA-MP/VC-MP/MTA/Zomboid)

Other => Off-Topic => Technical Support => Topic started by: eDiT on May 12, 2009, 11:28:26 PM

Title: Nick Alert Script! (mIRC)
Post 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.

Code: [Select]
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:
Code: [Select]
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
Title: Re: Nick Alert Script! (mIRC)
Post by: Aryan on October 09, 2014, 10:23:52 AM
Bump!

here mine :|

Code: [Select]
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 $+ .
  }
}
Title: Re: Nick Alert Script! (mIRC)
Post by: EnzoMortelli on October 09, 2014, 12:24:20 PM
All hail Miranda IM