Top

blacklist


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  5.5
Scores Submitted  2
Date Added  Oct 14, 2007
Last Updated  Oct 14, 2007
Tags  ban  black  blacklist  global  list 
  Bookmark and Share

Introduction

right click any where on the screen or use the commands...

Grab the Code

Comments

  (3)  RSS
`[-Alex-]
Comments: 8
 
mIRC Snippet:  blacklist
Posted on Oct 14, 2007 9:09 pm
enjoy ;D
Scakk
Comments: 218
 
mIRC Snippet:  blacklist
Posted on Oct 15, 2007 1:56 am
Just few things I moticed right off.

1) There is no need for the \" / \" in there.
2) You can just group all the sclick as one

Code:

on *:dialog:blacklist:sclick:*: {
  if ($did == 14) { stuff }
  if ($did == 15) { stuff }
}

And so one

3) You can dombine like events

Code:

    /did -b blacklist 38
    /did -b blacklist 33


Can be
Code:
 did -b blacklist 33,38


4) This
Code:
 /timer $+ blacklist 0 1

could be
Code:
 .timerblacklist 0 1

and be the same. Also with a \" . \" before timer it will not show in the status window.
Flexi
Comments: 4
 
mIRC Snippet:  blacklist
Posted on Dec 11, 2007 12:53 am
Does this have a owner control?

Please Register or Login to start posting comments.
Bottom