Auto Join on Kick

By LuminolBlue on Dec 20, 2011

Most, if not all, IRC clients have a "auto join on kick" option, but the purpose of this snippet is to delay the auto join using a timer. Some channels have a bot that will ban those that auto join after being kicked; I've been on such a channel. :-)

; LuminolBlue's Auto Join On Kick with a Timer
; Feel free to remove these comments and modify the script.

on *:kick:#:{
  if ($knick == $me) {
    .timer 1 10 .join #
    halt
  }
}

Comments

Sign in to comment.
Kilim   -  Jun 11, 2012

This is actually great. I run my bot while sleeping so when someone uses him for spam he gets kickbanned, then unbanned so his auto rejoin feature is useless. Now I don't have to constantly check :D

 Respond  
blackvenomm666   -  Jan 17, 2012

no it can't gtaxl. there is no timer.

 Respond  
GTAXL   -  Jan 17, 2012

mIRC can already do this. It's called, look in your mIRC options.

 Respond  
Jethro   -  Dec 20, 2011

Then the built-in option "auto join on kick" should be unchecked when you run this snippet. Or I suppose prefix the ^ by the kick event to set it as a priority.

 Respond  
blackvenomm666   -  Dec 20, 2011

it exists in mirc with a timer function to keep you from rejoining too quickly? i've run into the trouble where the bot auto bans you if you rejoin after a kick too quick

 Respond  
WorldDMT   -  Dec 20, 2011

useless
no need to this code cz it already exist in mIRC

 Respond  
LuminolBlue   -  Dec 20, 2011

Jethro, then you're in big trouble. :P

 Respond  
Jethro   -  Dec 20, 2011

What if you are on blacklist or banned?

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.