Top

Black-list v2.1


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  3.0
Scores Submitted  1
Date Added  May 19, 2008
Last Updated  May 25, 2008
Tags  .  1  2  black  by  francis  list  sap 
  Bookmark and Share

Introduction

Paste all that in your script editor, BUT, READ THE CODE, THERE IS PLACES INDICATIONS!

Commands that may be used after that:

/blist add [nick] <[reason]>
/blist remove [nick]
/blist aadd [nick] <[reason]> *NEW*
/blist aremove [nick] *NEW*
/blist clear *NEW*
/blist aclear *NEW*
/blist ashow *NEW*
/blist show
/blist [cmds/help]

Please report any bug! :)

Thank you.

PLEASE TYPE "/BLIST HELP" IMMEDIATLY AFTER INSTALL

NOW WORKS WITH ADDRESSES!
Put "a" before the commands in /blist to have addresses.

Grab the Code

Comments

  (8)  RSS
BlueThen
Comments: 320
 
mIRC Snippet:  Black-list v2.1
Posted on May 19, 2008 9:37 pm
Why make the version a variable? Can't you just hardcode it in?
napa182
Comments: 1,128
 
mIRC Snippet:  Black-list v2.1
Posted on May 19, 2008 9:54 pm
you can make the kickban line like this for the on join
Code:
ban -k $chan $nick 4 Black-Listed!

same thing for setting the nick to the black list
Code:
ban -k $active $2 4 Black-Listed!

also instead of setting just the nick have it set the addy to the txt file just so say the ban was taken off by someone else or cleared when no one is in the room and the person joins back under a diff nick.
EL
Comments: 1,366
 
mIRC Snippet:  Black-list v2.1
Posted on May 20, 2008 2:27 am
On *:LOAD: { %var Data } <-- Is what you should use to auto make vars and data that needs to be made when you first use the code or load the script.`-.-ยด
francismori7
Comments: 3
 
mIRC Snippet:  Black-list v2.1
Posted on May 20, 2008 11:18 am
I'm begginer :)

I'll try to see what you guys mean and I'll update it :)

PS: I also need suggestions...
jonesy44
Comments: 1,068
 
mIRC Snippet:  Black-list v2.1
Posted on May 20, 2008 11:28 am
Code:
echo -

.. shudnt that be..
Code:
echo -a

typo?
francismori7
Comments: 3
 
mIRC Snippet:  Black-list v2.1
Posted on May 20, 2008 3:55 pm
No, I want to echo "- COMMAND".

Also, I want to get the address of another user. Can I do it with $address? Or, I need to get a thing in the whois?
jonesy44
Comments: 1,068
 
mIRC Snippet:  Black-list v2.1
Posted on May 20, 2008 4:31 pm
You may wanna put -a in there then the - then
some mIRC versions, if there is no switch will automatically put it in the server window.
chadbdurham
Comments: 6
 
mIRC Snippet:  Black-list v2.1
Posted on May 26, 2008 11:05 am
try a if ($nick ison $chan) { mode $chan +b $2

Please Register or Login to start posting comments.
Bottom