Dynadot

Autokick Nick on join script (mIRC)

Spaceship Spaceship
Watch
Well, I have a billion codes, so I am just going to every now & then post them for you guys... If I have nothing better to do! :P

So here, this is another mIRC code...

Download mIRC @ mirc.com

Make a file via Notepad or whatever called akick.mrc

Copy & Paste the following...

This one applies to all channels:

replace <USERNICK> with the user's nickname & replace <REASON> with the reason...

Code:
on *:JOIN:#:{
  var %kick.nick <USERSNICK> 
{ if ($nick == %kick.nick) { kick $chan %kick.nick $reason }
}

This applies to only 1 channel (Add multiple times with a different chan to get more than one chan)

Replace <CHAN> with the Channel name, replace <REASON> with the reason of kicking & <USERNICK> with the user's nickname

Code:
on *:JOIN:#<CHAN>:{
  var %kick.nick <USERSNICK> 
{ if ($nick == %kick.nick) { kick $chan %kick.nick <REASON> }
}

-RageD
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back