Top

Nick Alert

+ 1 likes
Please Register to submit score.
Average Score  1.4
Scores Submitted  5
Date Added  Apr 29, 2007
Last Updated  Apr 29, 2007

Introduction

It is pretty straightforward. Paste this into your remotes. When someone says your nick or name it will open a new window and show you what was said, when it was said, by who, and in what channel. But if your nick or name was said in your active channel it will not.
Just replace where it says nick with your nickname and where it says name with your name.

Grab the Code

Comments

  (10)  RSS
RusselB
Comments: 97
 
mIRC Snippet:  Nick Alert
Posted on Apr 30, 2007 1:18 am
Your on text events would respond to the actual word nick or name said anywhere in the line, not the person's nick.
Chevy
Comments: 23
 
mIRC Snippet:  Nick Alert
Posted on Apr 30, 2007 2:18 am
Clean it up a bit like your $nick << Set as $$1 << Much better nick command cause $nick << can come out (what) or anything else but $$1 will only apply to the persons nick that said your nick in .ame
.notice
.amsg
and also where you have it to put there nicks put the actual code to read your nick so if your nick is changed to say Throttle
It's still in there and it will pick up anyone saying that as well and the code for that is ...on *:text:*:#:{ if ($me isin $1-) { echo $nick has said your name on $chan }
xDaeMoN
Comments: 696
 
mIRC Snippet:  Nick Alert
Posted on Apr 30, 2007 2:50 am
@ Russelb, the author did say that you have to manually change the word "nick" with your nick or any other name that you use.
|MELIORITE|
Comments: 144
 
mIRC Snippet:  Nick Alert
Posted on Apr 30, 2007 8:24 pm
In that case perhaps, using that format:

Code:
on *:text:*: {
  if ($me is in $1-) && if ($chan != $active) { ETC


Soemthing liek that anyways...
Bouncer
Comments: 120
 
mIRC Snippet:  Nick Alert
Posted on May 1, 2007 11:55 am
Chevy $nick in my code will never come out as "what" or anything other then the persons nick who said my nick/name. And in the example code you gave, you yourself used $nick right after you said to use $$1. And ty |Meliorite| for the advice. I thought about using it to begin with but for some reason I can't remember right now why I decided not to. Might update it later.
Bouncer
Comments: 120
 
mIRC Snippet:  Nick Alert
Posted on May 1, 2007 12:02 pm
Now I remember why I didn't use that code. If I do then my @Name alerts do not work and would need to be put in a seperate remotes.
Lindrian
Comments: 719
 
mIRC Snippet:  Nick Alert
Posted on May 1, 2007 12:07 pm
there's no need for all text events, and u can do:
Code:

if $wildtok($1-,$+(*,word,*),1,32) {

* Replace 'word'
Bouncer
Comments: 120
 
mIRC Snippet:  Nick Alert
Posted on May 1, 2007 12:17 pm
I haven't used wildcards yet Lindrian so I will mess around with that code and when I feel comfortable that I can code it properly I will update my code. :)
Just1nn
Comments: 7
 
mIRC Snippet:  Nick Alert
Posted on May 25, 2007 6:10 pm
This is an awesome script but I turned on mIRC and all the sudden it doesnt work.. to replace the words nick and name i put justin (my name) except action, for action i put my bots nick, am i doing something wrong? whenever someone says my name it says unknown command...
pwnisher3
Comments: 59
 
mIRC Snippet:  Nick Alert
Posted on Aug 16, 2008 1:53 am
i think mine is better

Please Register or Login to start posting comments.
Bottom