mIRC Home    About    Download    Register    News    Help

Print Thread
#183053 17/08/07 02:15 PM
V
Vile
Vile
V
on highlight tooltip

#183061 17/08/07 02:28 PM
F
Fussel
Fussel
F
This function is already implemented, just look into your highlight settings! wink

#183109 17/08/07 08:17 PM
V
Vile
Vile
V
you win this round...

#183111 17/08/07 09:30 PM
S
segosu
segosu
S
It kind of sucks though, seeing as it doesn't even display the line that matched.

I find it better to disable it from mIRC's options and use this:
Code:
on *:TEXT:*:#: {
  if (*nick* !iswm $1-) return 
  if (!$appactive) noop $tip(highlight, Highlight $network, $+([,$chan,]) < $+ $nick $+ > $1-,,,,, $window($chan).wid)
}

on *:ACTION:*:#: {
  if (*nick* !iswm $1-) return 
  if (!$appactive) noop $tip(highlight, Highlight $network, $+([,$chan,]) * $nick $1-,,,,, $window($chan).wid)
}

Last edited by segosu; 17/08/07 10:52 PM.
#183188 18/08/07 09:56 AM
L
Lusht
Lusht
L
Hmm... may be like that:

For example, our nick is Gredo

Code:
on $*:text:/(^|\s)([gG][rR][eE][dD][oO])/iS:*: {
*some IFs*
noop $tip(hl_top,Highlight,$+([,$time,]) $+(<,$nick,>) $1-,7,$null,$null,$null,$null)
}
}

#183201 18/08/07 10:57 AM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Seeing as you've used the /i switch, you don't need to use [gG][rR] etc, because /i makes it a case-insensitive match.


Link Copied to Clipboard