Top

Comments

  (11)  RSS
DarkNES's
[-DDC-]Darkness
Comments: 22
 
mIRC Snippet:  Auto UnBan Snippet
Posted on Mar 21, 2008 2:00 pm
Eh. I like it. It works well. ^_^ Good job, man. :D 10/10 :]
mountaindew
Comments: 1,422
 
mIRC Snippet:  Auto UnBan Snippet
Posted on Mar 20, 2008 2:00 pm
the else halt isn't necessary
DarkNES
Comments: 11
 
mIRC Snippet:  Nick Notification
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.
DarkNES
Comments: 11
 
mIRC Snippet:  Nick Notification
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: 11
 
mIRC Snippet:  Nick Notification
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
Eugenio
Comments: 517
 
mIRC Snippet:  Nick Notification
Posted on Mar 20, 2008 8:23 am
:o Mines ten time better =]
/me rates 1/10 xD
DarkNES
Comments: 11
 
mIRC Snippet:  Nick Notification
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
F*U*R*B*Y*
Comments: 416
 
mIRC Snippet:  Nick Notification
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...
EL
Comments: 913
 
mIRC Snippet:  Auto UnBan Snippet
Posted on Mar 20, 2008 7:29 am
Well it works but mite as well vengeance them for it.Kick ban or just a auto deop or somehing(no ops for a set period of time),shouldn't be baning other ops.`-.-´
EL
Comments: 913
 
mIRC Snippet:  Nick Notification
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.
EL
Comments: 913
 
mIRC Snippet:  Nick Notification
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.`-.-´
Bottom