Top

Comments

  (22)  RSS
Jack_Sparrow's
Tippy158
Comments: 3
 
mIRC Snippet:  NickList Menu
Posted on Jun 7, 2008 12:12 am
The script looks/works pretty good.I might make on simalar to it :p Well keep up the good work,


Sincerely,

Tippy.
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  User Control Panel
Posted on May 21, 2008 5:24 am
Edited it to make it use local variables :)
Thx Jonesy44
jonesy44
Comments: 782
 
mIRC Snippet:  User Control Panel
Posted on May 20, 2008 11:25 am
make;
Code:
set %i 1

..
Code:
var %i 1
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  User Control Panel
Posted on May 20, 2008 6:42 am
Edited it to Make it Hash Table Based ;)
Bouncer
Comments: 120
 
mIRC Snippet:  NickList Menu
Posted on Apr 28, 2008 1:19 pm
Lol @ jonesy44. Good point :P
jonesy44
Comments: 782
 
mIRC Snippet:  NickList Menu
Posted on Apr 28, 2008 1:08 pm
"PLZ DON`T USE CAPs IN # IT IS VERY ROUDE!"

.. PLEASE
.. RUDE
.. ALSO TYPING IN CAPS WARNING ABOUT USING CAPS ?
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  NickList Menu
Posted on Apr 28, 2008 12:56 pm
Cheers mate :)
I am not an expert yet so I guess I will experiment with it first, then I will edit it lol

Thx for the headsup :)
d3xt0r
Comments: 1
 
mIRC Snippet:  NickList Menu
Posted on Apr 28, 2008 12:15 pm
Only problem with this is than most networks have ACCESS Lists off as default

e.g.

ChanServ
.Super-OP
..Add:/cs access # ADD $$1 10
..Del:/cs access # DEL $$1 10
.Auto-OP
..Add:/cs access # ADD $$1 5
..Del:/cs access # DEL $$1 5
.HOP
..Add:/cs access # add $$1 4
..Del:/cs access # DEL $$1 4
.VOice
..Add:/cs access # ADD $$1 3
..Del:/cs access # DEL $$1 3

You could have a option saying setup access: { cs set # xop off } for example.
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  Control Panel X
Posted on Apr 28, 2008 10:35 am
Sorry to Double Comment but I fixed it now

It was working perfectly for me
but incase you had any probs, I modified it a bit and I checked it out with friend and all of it works

But the (NickServ) Unknown command identelseify. was a type lol

Thanks for pointing it out anywyas mate ;)

CHeers
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  Control Panel X
Posted on Apr 28, 2008 9:49 am
Looking into it now, Whistler;

Thanks for the headsup but it worked for me and my friends on the server I am on so it might be your server but I am looking anyway
TheWhistler
Comments: 8
 
mIRC Snippet:  Control Panel X
Posted on Apr 28, 2008 5:22 am
just going to post errors
(NickServ) Unknown command identelseify.
lots of Unknown MODE flag's in Toggle Ban
no commands work in More Options
this snipplet do not work right
not with me on my server
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 21, 2008 11:19 pm
I got it now :)

Cheers guys ;0

And sorry for slow reply..

Was on vacation and had a nice tiem but I am back now :)
napa182
Comments: 924
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 12, 2008 5:51 am
you could also do it like this as well to reduce mode flood
Code:
ctcp *:unban:?: {
  if ($3 !ischan) { .msg $Nick You must select a channel. | halt }
  var %a = $Ibl($3,0), %b = 0
  while ( %b <= %a ) {
    if ($Ibl($3,%b) iswm $address($2,5)) { var %unbann $addtok(%unbann,$IfMatch,32) }
    inc %b
  }
  mode $3 - $+ $str(b,%b) %unbann
}

napa182
Comments: 924
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 12, 2008 5:11 am
read the help file about $ibl type /help $ibl in ur mirc %a is a var he set to use in the while loop... var %a = 0
so what this line is doing.. if ($Ibl($3,%a) $ibl = internal ban list $3 = channel %a = 0 - how many bans are in the list so say there is 5 bans in the ban list it will check 0 - 5

just read up in ur help file about it
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 12, 2008 4:10 am
er... I am sorry to dissapoint you but I have no idea what $Ibl($3,%a
is and what does %a have to with this ?

Gecko321
Comments: 11
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 10, 2008 7:18 pm
no problem, it uses a while loop to search through the ban list, entry by entry.

Code:
if ($Ibl($3,%a) iswm $address($2,5)) { mode $3 -b $IfMatch }


that checks each entry in the ban list against the nicks address using a wildcard match since most bans have some sort of wildcard string in them. if it matches in unbans the user.

if you got any other questions or need help just let me know.

gecko
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  Cowboy Snippet
Posted on Apr 10, 2008 6:22 am
Thanks guys ;)

Glad you like it :)
Jack_Sparrow
Comments: 9
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 10, 2008 6:21 am
Thanks for the advice guys :)

I am just a 14 year old so I guess I have a lot to learn lol

Gecko, if you could spare the time, can you please explain how your code works ?

I am interested to know how you made it happen
jonesy44
Comments: 782
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 9, 2008 11:09 am
use a var instead .. if youo're using the elseif way, so yuo dont have to change each #chan
Gecko321
Comments: 11
 
mIRC Snippet:  CTCP Unban Script
Posted on Apr 9, 2008 11:04 am
you can eliminate a lot of the if-then statements. try this

Code:

ctcp *:unban:?: {
  if ($3 !ischan) { .msg $Nick You must select a channel. | halt }
  var %a = 0
  while (%a < $Ibl($3,0)) {
    inc %a
    if ($Ibl($3,%a) iswm $address($2,5)) { mode $3 -b $IfMatch }
  }
}
1 2 Next
Bottom