Top

Nick Notification

Please Register to submit score.
Average Score  2.5
Scores Submitted  2
Date Added  Mar 20, 2008
Last Updated  Mar 20, 2008
Tags  nick  notification 

Introduction

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.

Grab the Code

Comments

  (8)  RSS
EL
Comments: 552
 
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.`-.-´
EL
Comments: 552
 
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.
F*U*R*B*Y*
Comments: 360
 
Posted on Mar 20, 2008 7:36 am
um, if i do

Quote:

Yournick, message


won't pick it up, dued to the comma, therefore not really good.

Secondly it only picks up first word...
DarkNES
Comments: 15
 
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
Eugenio
Comments: 266
 
Posted on Mar 20, 2008 8:23 am
:o Mines ten time better =]
/me rates 1/10 xD
DarkNES
Comments: 15
 
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
DarkNES
Comments: 15
 
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.
DarkNES
Comments: 15
 
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.

Please Register or Login to start posting comments.
Bottom