mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Sep 2014
Posts: 83
H
Babel fish
OP Offline
Babel fish
H
Joined: Sep 2014
Posts: 83
I've been having problems with users using IRCcloud to make clones and bypass clonescanner. So im just in total blocking ALL irccloud accounts... but it doesnt want to work. what am I doing wrong?

Code:
 
On *:JOIN:#: {
if ( $wildsite == *!*@gateway/web/irccloud.com/* ) {
    /kick $chan $nick Sorry no IRCcloud users allowed :/
    msg $nick Im sorry but IRC cloud users are NOT allowed into this channel
  }
}

Last edited by HappyFappy; 06/07/15 08:56 PM.
Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
$wildsite is not exactly *!*@gateway/web/irccloud.com/*

Joined: Sep 2014
Posts: 83
H
Babel fish
OP Offline
Babel fish
H
Joined: Sep 2014
Posts: 83
yea, but the * at the end is always different thats why i cant just set one

Joined: Sep 2011
Posts: 32
F
Ameglian cow
Offline
Ameglian cow
F
Joined: Sep 2011
Posts: 32
You might want to investigate the possibilities of $istok($wildsite,irccloud.com,47).

Joined: Feb 2015
Posts: 243
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Feb 2015
Posts: 243
erm.. from what i see ..what you need may be iswm operator
Code:
on *:join:#: {
if (*gateway/web/irccloud.com/* iswm $address($nick,2)) {
mode $chan +b $address($nick,2)
kick $chan $nick Sorry no IRCcloud users allowed :/
;how will you keep them out if you don't ban them? :S
 msg $nick Im sorry but IRC cloud users are NOT allowed into this channel
} 
}

P.S if this intended for a common ircd and not twitch (which is edited and weird) you can ban this > *!*@gateway/web/irccloud.com/* and it won't let any address that contains this join.

Last edited by OrFeAsGr; 08/07/15 09:38 PM.

Link Copied to Clipboard