Average Score
2.5
Scores Submitted
2
Date Added
Mar 20, 2008
Last Updated
Mar 20, 2008
Tags
nick
notification
This snippet will notify you and force you to open the window where someone states your nick. I useful for those on multiple networks at a time. Just load into Remotes, and you should be all set.
Posted on Mar 20, 2008 7:15 am
Code:
on *:TEXT:*:#: {
if ($1 == $me) {
.window -x $chan
.echo $color(notice) $chan $+(-,$me,-) $nick on $chan wants to speak with you.
}
}
Change the -a to $chan and it wont echo in your status window.make in on action as well some ppl are weird and say nicks with actions.Flood protection is a must will all things.Other then that its not bad.''Rate it or Hate it?''...4/10.`-.-´
Posted on Mar 20, 2008 7:19 am
Ahh the echo -a will work if you timer the window to change.
Code:
on *:TEXT:*:#: {
if ($1 == $me) {
.timer 1 2 .window -x $chan
.echo $color(notice) -a $+(-,$me,-) $nick on $chan wants to speak with you.
}
}
Also had another idea,maybe havea choice if you want to change windows or ignore the message.Justa thought.Small dialog auto pop up with what they said an where an such yes no button maybe a ignore feature.
Posted on Mar 20, 2008 7:36 am
um, if i do
won't pick it up, dued to the comma, therefore not really good.
Secondly it only picks up first word...
Posted on Mar 20, 2008 7:59 am
Ya.. I just made it for people to say "Your Nick" only. Just as a notice, not a msg forwarder ;x
Posted on Mar 20, 2008 8:23 am
:o Mines ten time better =]
/me rates 1/10 xD
Posted on Mar 20, 2008 8:23 am
Heh, I haven't had any sleep all night. Btw, nice ideas. I was going to implement them eventually, however, I've been working on a bot. But ya, it should be of more use now ;x
Posted on Mar 20, 2008 8:25 am
I added a timer on the dialog popup so that you had some time to know who it was, and whether to accept it or not.
Posted on Mar 20, 2008 8:30 am
Well, it's basic. Mainly just for those who need something simple to use, that's not too technical.
Enter comment here..
Please
Register or
Login to start posting comments.