Top

Whitlist


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  0.0
Scores Submitted  0
Date Added  Feb 08, 2008
Last Updated  Feb 08, 2008
Tags  a  friend  list  white 
  Bookmark and Share

Introduction

This code is a whitelist. Special thanks to Shadows Blacklist for making the base of the script. Hope you enjoy! Note: UNTESTED

Grab the Code

Comments

  (12)  RSS
Kinight
Comments: 10
 
mIRC Snippet:  Whitlist
Posted on Feb 8, 2008 11:42 pm
---___--- ; below me, you see mode $chan +a $nick. Edit the +a to whatever you want!
napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 12:34 am
just some errors i get..
AL Unknown command
* /dialog: 'Whitelist' name in use (line 27
* /auser: insufficient parameters (line 11
* No such user in user list
* /write: insufficient parameters (line 17
* /run: unable to open file 'Whitelist.txt' (line 20
you mite want to go through it and add some checks if feilds are filed in or not and fix ur alias to open the script..
just some thoughts..
HoNdAx707
Comments: 59
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 12:36 am
Quote:

---___--- ; below me, you see mode $chan +a $nick. Edit the +a to whatever you want!

i saw that but just so you know =)
napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 12:44 am
heres try this for ur alias and to get rid of the error for
AL Unknown command
* /dialog: 'Whitelist' name in use (line 27
Code:
alias al {
  dialog $iif($dialog(Whitelist),-v,-md) Whitelist Whitelist
}
menu status,channel {
  Whitelist { al }
}

and to get rid of
/auser: insufficient parameters (line 11
* No such user in user list
* /write: insufficient parameters (line 17
use
Code:
$$?= instead of $?=

that should help reduce some errors
napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 12:52 am
heres for those other 2 errors i got..
Code:
on *:DIALOG:Whitelist:sclick:3:{
  if (!$read(Whitelist.txt)) { return }
  else { /run Whitelist.txt }
}
on *:DIALOG:Whitelist:sclick:4:{
  if (!$read(Whitelist.txt)) { return }
  else {
    /remove Whitelist.txt
    /echo 2 -a The Whitelist.txt File has been Removed! Note that the "View List" button won't work unless you "Add" another user!!
  }
}

napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 1:02 am
please next time test it to make sure it works =/
napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 1:20 am
you can make that all on one on sclick event as well
Darkkeeper
Comments: 101
 
mIRC Snippet:  Whitlist
Posted on Feb 9, 2008 10:01 am
:\ i really dont see a point in a whitelist :\
Kinight
Comments: 10
 
mIRC Snippet:  Whitlist
Posted on Feb 10, 2008 8:00 pm
TO heck with it. im just gonna erase it!
EL
Comments: 1,405
 
mIRC Snippet:  Whitlist
Posted on Feb 10, 2008 11:09 pm
what? why? why not try an take suggestions an fix it so it works?
Kinight
Comments: 10
 
mIRC Snippet:  Whitlist
Posted on Feb 24, 2008 7:22 pm
I edited a few words: and this is what i get? tons of flaming -_-
napa182
Comments: 1,155
 
mIRC Snippet:  Whitlist
Posted on Feb 24, 2008 7:36 pm
Kinight said:
Quote:
I edited a few words: and this is what i get? tons of flaming -_-

um i tried to help you i did not flame you =/

Please Register or Login to start posting comments.
Bottom