About this snippet
Overview
this is a simple say my name tooltip snippet using mirc's built in $tip ability && test
Ok basically this checks to see if a user said your name in the room. Reason for putting it below the on text instead of in the on text area is in case you
Ok basically this checks to see if a user said your name in the room. Reason for putting it below the on text instead of in the on text area is in case you
on *:text:*:#: {
if (($me isin $1-) && ($version !< 6.31) && (!%tip. [ $+ [ $nick ] ]) && (($appstate == tray) || ($chan != $active))) {
inc -eu2 %alert.flood
if (%alert.flood < 2) {
$tip('Tray Tip', 4Name Alert14 $chr(40) $network $chr(41) , 1 $nick : $regsubex($1-, /\[(?:style\x20.*?|/style)\]/gi,$null) - 12 $chan , 10)
set -eu15 %tip. [ $+ [ $nick ] ] true
}
}
}

