mIRC Homepage
Posted By: Haze On Kick - 22/05/03 10:34 PM
when sum1 is kicked with the word "porn" in the reason i wanna, auto add the knick 2 pornlist how wud i do this?
wot wud the identifiers be? thx smirk
Posted By: KingTomato Re: On Kick - 22/05/03 10:35 PM
on 1:KICK:#: {
if ($knick != $me) && ($istok($1-, porn, 32)) /write pornlist.txt $knick
}
Posted By: Haze Re: On Kick - 22/05/03 11:21 PM
Nah Nah i mean i want the person who was kicked (pornbot) to automatically be added 2 my userlist u kno wot i mean?
Posted By: KingTomato Re: On Kick - 22/05/03 11:23 PM
on 1:KICK:#: {
if ($knick != $me) && ($istok($1-, porn, 32)) /auser level $address($knick, 11)
}
Posted By: pheonix Re: On Kick - 23/05/03 08:56 AM
or u cud use
on ^*:KICK:#:{
if ($knick != $me) && (*porn* iswm $2-) {
auser porn $address($knick,1)
access # add deny $address($knick,1)
}
else {
HALT
}
}
Posted By: KingTomato Re: On Kick - 23/05/03 08:01 PM
just stop talking plz...

First off the ^ prefix is not needed. Secondly, he was looking for adding it to a user level, not channel access list. Thirdly, is it so pointless to add else { halt }
Posted By: pheonix Re: On Kick - 23/05/03 10:20 PM
i know but the ban makes it better, using the ^ is the way ive been taught and else { makes it quicker smile
Posted By: KingTomato Re: On Kick - 23/05/03 10:21 PM
Quicker? no..It takes more time for mirc to evaluate a halt, then to just visibly see that the end of the statement is right there.
Posted By: pheonix Re: On Kick - 23/05/03 10:40 PM
no because if the else { isnt there mirc has to decide what to do if it isnt = to if (w.e
Posted By: KingTomato Re: On Kick - 23/05/03 11:09 PM
Whatever-- Even if *if* you were right, is a few hundreths, if not thousandths) of a second going to matter?
Posted By: codemastr Re: On Kick - 24/05/03 12:18 AM
Assuming mIRC does anything like most scripted languages for an unconditional branch (else statement), it is SLOWER to include an else statement. I have no idea why you would think it would be faster. The reasoning you gave made no sense at all.
Posted By: pheonix Re: On Kick - 24/05/03 12:23 AM
1. who cares
2. it wud also be very quick to evaluate an else statement
Posted By: KingTomato Re: On Kick - 24/05/03 03:35 AM
okay, go ahead and be 13 keys closer to arthritis per statement >:D
© mIRC Discussion Forums