Anyone have any help or suggestions to JUPE or 'auto kline' users when they join a specific channel.
Problem is:
Bots join bad channel automatically, and if I can auto-kline this should resolve temporarily unless they switch channel names. ---
I've tried spamfilter, but just putting the channel doesnt work.
Auto Kline on BAD channel
Have you tried a deny channel block?
-
romeo32149
- Posts: 4
- Joined: Tue Jan 16, 2007 8:43 pm
Unfortunately and correct me if Im mistaken,Jobe1986 wrote:Have you tried a deny channel block?
This only will cause the user not to be able to USE the channel listed in the Deny block.
I am attempting to AUTO K:LINE or G:LINE based on channel join and not really prevent the use of the channel.
-
romeo32149
- Posts: 4
- Joined: Tue Jan 16, 2007 8:43 pm
KLINES
I was able to use the following mIRC script, but Im looking for a server solution if anyone has any... for UnrealIRCd.romeo32149 wrote:Unfortunately and correct me if Im mistaken,Jobe1986 wrote:Have you tried a deny channel block?
This only will cause the user not to be able to USE the channel listed in the Deny block.
I am attempting to AUTO K:LINE or G:LINE based on channel join and not really prevent the use of the channel.
Code: Select all
on *:join:#botchannel:{ raw userip $nick }
raw 340:*: { if ($gettok($1-,1,61) != AdminNickname) { kline *@ $+ $gettok($1-,2,64) your nick has been auto klined for abuse } }
-
romeo32149
- Posts: 4
- Joined: Tue Jan 16, 2007 8:43 pm