mIRC Home    About    Download    Register    News    Help

Print Thread
E
encom
encom
E
Hi all!

I need a join blocker.
When I have someone is trying to join my channel, just want to have it kicked automaticly.

Does someone have this script for me?

Thanks lot

Joined: Mar 2005
Posts: 420
X
Fjord artisan
Offline
Fjord artisan
X
Joined: Mar 2005
Posts: 420
If you don't want others to join your channel, set it invite mode or set a key.

Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
on @*:JOIN:#mychannel:{
if ($nick == somenick) {
ban $nick 3
.timerkick 1 3 kick $chan $nick Go Away
}
}

A
adazh
adazh
A
Quote:

on @*:join:#MyChannel:{
if ($nick == somenick) {
ban # $nick 2
.timerkick 1 3 kick # $nick
}
}

Joined: May 2005
Posts: 449
B
Fjord artisan
Offline
Fjord artisan
B
Joined: May 2005
Posts: 449
mIRC also has an autokick list built in. To add some, type /chanserv akick #channel add Nickname. To make it a permanent ban, type /chanserv akick #channel stick usermask.

Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
Quote:
mIRC also has an autokick list built in. To add some, type /chanserv akick #channel add Nickname. To make it a permanent ban, type /chanserv akick #channel stick usermask.

ChanServ is nothing to do with mIRC, ChanServ is a network service run by the owners of the network your on and hence doesn't even exist on all IRC networks.


Link Copied to Clipboard