Top

Always Join Script


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  1.0
Scores Submitted  1
Date Added  May 29, 2008
Last Updated  May 29, 2008
Tags  anti  ban  kick 
  Bookmark and Share

Introduction

this simplest script only work if you have op in channel,
even if you got ban+kick and also deoped, you still can join into channel

lol

::requirements::
you must have op first!

Grab the Code

Comments

  (4)  RSS
vaseline28
Comments: 154
 
mIRC Snippet:  Always Join Script
Posted on May 29, 2008 11:16 am
For me:
Quote:
on *:KICK:#: { if ($knick == $me) { join # } }

works also as:
Quote:
on *:KICK:#: if ($knick == $me) join #

the "{" is not necessary and slows the script down minorly.
Also, there is an option on mIRC options to re-join channels after kicking, but otherwise great!
Seven_Dayss
Comments: 9
 
mIRC Snippet:  Always Join Script
Posted on May 29, 2008 11:35 am
well, if someone forgot to turn on the re-join channels, it will temporary banned!
lol

btw thanks 4 ur suggestion..

lol
vaseline28
Comments: 154
 
mIRC Snippet:  Always Join Script
Posted on May 29, 2008 12:14 pm
No problem, the "{" and "}" are only truly necessary when one part in a script takes more than one line.
mentalglitch
Comments: 23
 
mIRC Snippet:  Always Join Script
Posted on Jun 3, 2008 9:07 pm
hrm.. if they ban after they kick you your shat outa luck ;p so try->(unreal networks)
Code:

on ^*:BAN:#: if ($banmask iswm $address($me,5)) cs unban #
on *:DEOP:#: if ($me === $opnick) cs op #
on *:KICK:#: if ($knick === $me) join #
raw 474:*:cs unban # | .timer 1 1 join #


the on op takes care of op issues the ban takes care of your ban(on channel)
the on kick fixes being kicked and the raw 474:*: checks for this message:
#channel unable to join channel (address is banned)
then runs cs unban #

..enjoy
PS: you don't need to capitalize all the on *:command:
:COMMAND: works just the same as :command:
trust me this is more effective

Please Register or Login to start posting comments.
Bottom