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 |
|
|
Introduction
even if you got ban+kick and also deoped, you still can join into channel
lol
::requirements::
you must have op first!
mIRC Snippet:
Always Join Script
Posted on May 29, 2008 11:16 am
Posted on May 29, 2008 11:16 am
For me:
works also as:
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!
| 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!
mIRC Snippet:
Always Join Script
Posted on May 29, 2008 11:35 am
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
lol
btw thanks 4 ur suggestion..
lol
mIRC Snippet:
Always Join Script
Posted on May 29, 2008 12:14 pm
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.
mIRC Snippet:
Always Join Script
Posted on Jun 3, 2008 9:07 pm
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)
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
| 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





