Top

Channel Limiter BOT

+ 0 likes
Please Register to submit score.
Average Score  2.0
Scores Submitted  1
Date Added  Nov 05, 2007
Last Updated  Nov 06, 2007

Introduction

OK Finaly i creade the easy and so so usefull script and its much easy and faster Channel Limiter Please Leave a Commect Or SCOREEEEEEEE if u know how to make it more easyer u can sended here thx btw put your channels name where it says <YOUR CHANNEL> and delete " < " and " > " =)

There i Updated it!

Grab the Code

Comments

  (8)  RSS
mountaindew
Comments: 1,456
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 5, 2007 12:01 pm
Code:

on *:PART:#<YOURCHANNEL>: { /mode <YOUR CHANNEL> +l $calc($nick(#,0) + 1) }

u dont need the second your channel
Code:

on *:PART:#<YOURCHANNEL>: mode $chan +l $calc($nick(#,0) + 1)
^silk
Comments: 16
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 5, 2007 3:16 pm
This doesn't really, by the looks of it, limit your channels. I may be wrong, but aren't you increasing the limit each time a user joins? I'd rather simply type //mode $active +l <limit>
xDaeMoN
Comments: 696
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 5, 2007 3:32 pm
The On Quit event does not have a #channel parameter.
mountaindew
Comments: 1,456
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 5, 2007 5:53 pm
could u do
Code:

on *:quit: if ($nick isin #chan) mode $chan +l $calc($nick(#,0) + 1)

?
mountaindew
Comments: 1,456
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 5, 2007 5:53 pm
sorry, ison
xDaeMoN
Comments: 696
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 6, 2007 1:00 pm
$chan has no value in the On Quit event. You either specify the channel or use $comchan($me,N) or $chan(N) <- N being your Nth channel.
Freckle
Comments: 36
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 6, 2007 2:05 pm
@ ^silk

This is used by some people to prevent mass (re)joins.
also:

Code:

on *:PART:#: { if ($nick == $me) { mode <yourchannel> -l }


Might be handy ;)
^silk
Comments: 16
 
mIRC Snippet:  Channel Limiter BOT
Posted on Nov 6, 2007 4:43 pm
Oh I see. Thanks for clarifying that Freckle.

Please Register or Login to start posting comments.
Bottom