View

Notify Script

Snippet Author: FURBY
Rated:
Snippet Description: Just a simple notify script, have to be using the new mIRC Version 6.31 as it uses the $tip command... could most probably be done easier but this was 5 minutes work and it worked so i thought i should become more active on here and post it

Favorite Script -
  Korvin
Comments:
that will only msg u if something is before and after your name in a sentance, if someone says "korvin, hi" it wont trigger, using an if statement would be sufficient ex:
on *:TEXT:*:#: {
if ($me ISIN $1- && ($version !< 6.31) && (!%tip. [ $+ [ $nick ] ])) {

im sure u knew that =p

Posted by: Korvin


  Korvin
Comments:
wooops:

Code:
on *:TEXT:*:*: {
if ($me isin $1- && (!%tip. [ $+ [ $nick ] ])) {
if ($version !< 6.31) {
noop $tip('Tray Tip', $nick , $nick just said your name in $target with the following message:, 10)
noop $tip('Tray Tip', Message, $1-, 10)
}
else if ($version < 6.31) {
echo -a $nick just said your name in $target with the following messege:
echo -a $1-
}
beep
set -u20 %tip. [ $+ [ $nick ] ] true
}
}



that would be sufficient, no?

Posted by: Korvin


Smilies Message:

Comments: