2007
mIRC online notification
This snipet allowed you to be notified whenever your friend’s nick is online on IRC
You can add your friend’s nick using the mIRC menu
This snipet will also tell you if someone using your nick or your friend’s nick. Your mIRC will automatically WHOIS him/her and tell you his/her IP address
This is the code:
; Created by oyr79 © 2007 menu nicklist,query {
Notification
.Add Nick:{
notify $1 $?="Description:"
echo 4 -a *** $1 has been added to the notification list $logo.ok
}
.Del Nick:{
notify -r $1
echo 4 -a *** $1 has been removed to the notification list $logo.ok
}
}
menu menu,status,channel {
Notification
.Add Nick:{
notify $?="Nick:" $?="Description:"
}
.Del Nick:{
notify -r $?="Nick:"
}
}
menu menu,status,channel,nicklist,query {
Notification
.View List:{
notify -l
}
.Who is Online:{
notify -s
}
}
alias logo.ok { return $chr(111) $+ $chr(121) $+ $chr(114) $+ $chr(55) $+ $chr(57) Script $chr(169) 2005 }
raw 604:*:echo 4 -a *** $2 ( $+ $3 $+ @ $+ $4 $+ ) is online $asctime($5) $logo.ok | halt
raw 600:*:echo 4 -a *** $2 ( $+ $3 $+ @ $+ $4 $+ ) is online now $asctime($5) $logo.ok | halt
raw 601:*:echo 4 -a *** $2 ( $+ $3 $+ @ $+ $4 $+ ) has changed his/her nick or QUIT from IRC $asctime($5) $logo.ok | halt
raw 602:*:echo 4 -a *** Stop watching $2 ( $+ $3 $+ @ $+ $4 $+ ) $asctime($5) $logo.ok | halt; EOF