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
There i Updated it!
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 5, 2007 12:01 pm
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) |
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 5, 2007 3:16 pm
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>
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 5, 2007 3:32 pm
Posted on Nov 5, 2007 3:32 pm
The On Quit event does not have a #channel parameter.
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 5, 2007 5:53 pm
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) |
?
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 5, 2007 5:53 pm
Posted on Nov 5, 2007 5:53 pm
sorry, ison
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 6, 2007 1:00 pm
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.
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 6, 2007 2:05 pm
Posted on Nov 6, 2007 2:05 pm
@ ^silk
This is used by some people to prevent mass (re)joins.
also:
Might be handy ;)
This is used by some people to prevent mass (re)joins.
also:
| Code: |
on *:PART:#: { if ($nick == $me) { mode <yourchannel> -l } |
Might be handy ;)
mIRC Snippet:
Channel Limiter BOT
Posted on Nov 6, 2007 4:43 pm
Posted on Nov 6, 2007 4:43 pm
Oh I see. Thanks for clarifying that Freckle.






