Is there a way to make it so when some 1 types ur name u get a little pop up alert or something?
simplest to that is do a blink command
on *:TEXT:*:*:{
if ($me isin $1-) { flash }
}
this script wont flash the mirc window unless.. you are not on it... otherwise if your in mirc or multiple servers and want to know if someone says your name in a certain channel you can echo
on *:TEXT:*:*:{
if ($me isin $1-) { echo -a $nick Said your name in $chan }
}