AKick Enforce
Please Register to submit score.
| Average Score | 2.0 |
| Scores Submitted | 3 |
| Date Added | Jul 31, 2006 |
| Last Updated | Jul 31, 2006 |
| Tags | akick kick |
Introduction
(dont have to Add the Akick Enforcer But you can if you want to)
I made this So that it checks to Enforece the Akick when someone Joins the channel not for when you Join it
Second ones Credit Goes to Raid When you join A channel it Does it in 60 Seconds after you join
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 5:12 am
Posted on Jul 31, 2006 5:12 am
omg.. X_x
-
on *:JOIN:#YourChan: {
if ($me isop $chan) { /msg Chanserv AKICK #YourChan ENFORCE }
}
-
-
on *:JOIN:#YourChan: {
if ($me isop $chan) { /msg Chanserv AKICK #YourChan ENFORCE }
}
-
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 5:19 am
Posted on Jul 31, 2006 5:19 am
Ty he he I Needed to Know how to Make it if your an op only (tried to add it in but i Crashed Mirc x.x)
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 5:38 am
Posted on Jul 31, 2006 5:38 am
this is completly useless. you can't be opped when you join a channel. you can at most use a timer to check if you're opped in let's say 4 or 5 seconds
/help /timer
/help /timer
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 5:51 am
Posted on Jul 31, 2006 5:51 am
There .... Not what i made this for tho I made it to Kick people that Join The channel when your allready in it
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 5:56 am
Posted on Jul 31, 2006 5:56 am
you didn't get my point... you have to delay the check itself, not the command
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 6:01 am
Posted on Jul 31, 2006 6:01 am
Also I have stated I am new To scripting So a little help would be nice...
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 6:14 am
Posted on Jul 31, 2006 6:14 am
also Give me a Break its 4 am i havent slept IM 14!!
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 6:48 am
Posted on Jul 31, 2006 6:48 am
you could use this
on *:JOIN:#YourChan:{
timer 1 5 if ($me isop $chan) { .msg Chanserv AKICK $chan ENFORCE }
}
the problem with your code was that if you were to join the chan, it wouldn't have worked. you'd want to consider using somekind of flood protection to prevent flooding off when mass joins happen.
btw.. it's almost 3 pm here so i couldn't have known that.. but still, it's not an excuse for posting bad snippets. get some sleep and return with a better version
on *:JOIN:#YourChan:{
timer 1 5 if ($me isop $chan) { .msg Chanserv AKICK $chan ENFORCE }
}
the problem with your code was that if you were to join the chan, it wouldn't have worked. you'd want to consider using somekind of flood protection to prevent flooding off when mass joins happen.
btw.. it's almost 3 pm here so i couldn't have known that.. but still, it's not an excuse for posting bad snippets. get some sleep and return with a better version
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 10:49 am
Posted on Jul 31, 2006 10:49 am
When a user joins a channel and are on the akick list Chanserv will kick them. Wouldn't this be more effective like:
on *:JOIN:*: {
if ($nick == $me) && ($me isop $chan) {
chanserv AKICK $chan ENFORCE
timerAKICK 0 600 chanserv AKICK $chan ENFORCE
}
}
That way it does it when you join and then on a timer.
on *:JOIN:*: {
if ($nick == $me) && ($me isop $chan) {
chanserv AKICK $chan ENFORCE
timerAKICK 0 600 chanserv AKICK $chan ENFORCE
}
}
That way it does it when you join and then on a timer.
mIRC Snippet:
AKick Enforce
Posted on Jul 31, 2006 1:06 pm
Posted on Jul 31, 2006 1:06 pm
@Krimson Like i said This Is for When Someone else joins the channel Not For when you did...... I leave Mirc up All day and Night I just got sick of One person Maninging to get his way BAck in sense
@Raid TY Ill Add yours as a secondary one and give Credit Where its Due



