mIRC Home    About    Download    Register    News    Help

Print Thread
#234155 09/10/11 07:58 PM
Joined: Apr 2011
Posts: 26
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2011
Posts: 26
hey guys question, anyoneknows what nick alert script upp uses?

like when someone highlight me in one of the channels im in i get an @message window with ".:21:48:30:. (Rizon)(#test10) <Hakamada_Hinata> Chibi-Taiga you suck" in it

i rly mist that since i left upp

Joined: Mar 2010
Posts: 146
Vogon poet
Offline
Vogon poet
Joined: Mar 2010
Posts: 146
I suggest to use jaytea's Highlight Thing


Nothing...
Joined: Apr 2011
Posts: 26
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2011
Posts: 26
where do i paste it , in remote ?

Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
All scripts, unless stated otherwise, should be placed in Remotes as a new script (File menu > New).


Invision Support
#Invision on irc.irchighway.net
Joined: Apr 2011
Posts: 26
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2011
Posts: 26
thx it works

Last edited by DutchWesley; 10/10/11 05:34 PM.
Joined: Apr 2011
Posts: 26
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2011
Posts: 26
now that works, i got some more scripts i'd like to have

a systeminfo script for pc hardware info and link capture one that easy can be modified sothat it only capture links i want

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Go and search for the addon you want.. here , i dont think someone here will write you somthing that have been done befor.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }
Joined: Apr 2011
Posts: 26
D
Ameglian cow
OP Offline
Ameglian cow
D
Joined: Apr 2011
Posts: 26
the jaytea's Highlight Thing doesnt work anymore it only shows

Network Window Message

not the message and so

Joined: Jan 2010
Posts: 51
L
Babel fish
Offline
Babel fish
L
Joined: Jan 2010
Posts: 51
here is mine smile

Code:
ON $*:TEXT:*:#: {
  var %alerter $nick
  if ($me isin $1-) && ($target != $active) {
    timer 1 .5 flash -r 10
    timer 1 .5 beep 10
    echo -ast 4 %alerter alerted you on $chan at $time $+ .
  }
}


(\__/)
(='.'=)
(")_(")
Bunny Hopp

QuakeNet@ #Lenoox <> visit http://www.insaneboard.comeze.com
Joined: Feb 2015
Posts: 17
F
Pikka bird
Offline
Pikka bird
F
Joined: Feb 2015
Posts: 17
I know that this thread is old, but it's the first hit that Google finds when searching for mirc nick alert script.

Here's a script that creates a Desktop Window when somebody mentions your nick on mIRC channel window (Nick alert script).

Every time someone mentions your nick, new entry is added into a single Desktop Window. In case someone needs it, here's the script code:

Code:
on *:Text:$(* $+ $me $+ *):#: {
  if (!$window(@mIRC-NickAlert)) { window -mdk0 @mIRC-NickAlert }
  window @mIRC-NickAlert
  aline @mIRC-NickAlert 3Network: $str($chr(160),8), 6 $network 
  aline @mIRC-NickAlert 3Channel: $str($chr(160),8), 8 $chan 
  aline @mIRC-NickAlert 3Nick: $str($chr(160),14), 12 $nick 
  aline @mIRC-NickAlert 3Date & Time: $str($chr(160),2), 4 $+($date(yyyy mmmm d) ,$chr(32),2 $chr(40),$date(dddd),$chr(41) ,$chr(32),10 $time )
  aline @mIRC-NickAlert $crlf
  aline @mIRC-NickAlert 13T e x t: $str($chr(160),12), $1-
  aline @mIRC-NickAlert $crlf
  aline @mIRC-NickAlert 5-----------------------------------------------------------------------------------
  aline @mIRC-NickAlert$crlf
}


Here's how the nick alert script looks in reality:



Link Copied to Clipboard