mIRC Snippet:
C&C Renegade IP Logger
Posted on Aug 10, 2008 10:41 am
Posted on Aug 10, 2008 10:41 am
How run This script please instrution step to step
mIRC Snippet:
Ban Protect
Posted on Feb 13, 2008 2:08 pm
Posted on Feb 13, 2008 2:08 pm
Dude, you ripped this. :\
This is the God Protection Script. :/
This is the God Protection Script. :/
mIRC Snippet:
Kick/Ban/DEOP Protections
Posted on Jan 30, 2008 7:15 am
Posted on Jan 30, 2008 7:15 am
Works awesomely on utonet
mIRC Snippet:
Wheel Of Fortune
Posted on Jul 17, 2007 7:51 pm
Posted on Jul 17, 2007 7:51 pm
i dont really like this...
if ($me !isreg $chan) {
shouldnt that be isop, cuz how would voice or halfop kick?
if ($me !isreg $chan) {
shouldnt that be isop, cuz how would voice or halfop kick?
mIRC Snippet:
Auto Op From ini file
Posted on Jul 12, 2007 3:12 am
Posted on Jul 12, 2007 3:12 am
dose not work at all, sorry
mIRC Snippet:
Acronym Replacer Using Regex
Posted on Jul 6, 2007 11:18 am
Posted on Jul 6, 2007 11:18 am
well kind of good but simple but cant work for: :) :( etc
mIRC Snippet:
Kick/Ban/DEOP Protections
Posted on Jun 24, 2007 12:12 am
Posted on Jun 24, 2007 12:12 am
could i use on dal.net?
mIRC Snippet:
Channel Protections
Posted on Jun 6, 2007 4:44 am
Posted on Jun 6, 2007 4:44 am
You might also want it to set mode +Q so nobody can kick, and then put mode protection on
mIRC Snippet:
Channel Protections
Posted on Jun 5, 2007 6:30 pm
Posted on Jun 5, 2007 6:30 pm
just change from #Cribs to #
like
on *:BAN:#: {
like
on *:BAN:#: {
mIRC Snippet:
Ban Protect
Posted on Apr 14, 2007 8:01 pm
Posted on Apr 14, 2007 8:01 pm
so what does it do, Unban me, Ban them, Kick them ?
mIRC Snippet:
Ban Protect
Posted on Apr 13, 2007 11:57 am
Posted on Apr 13, 2007 11:57 am
Actually chicknh8r, one could still use /enable or /disable.. Or if the user accesses the remotes, they can change anything there too.
mIRC Snippet:
Ban Protect
Posted on Apr 12, 2007 6:06 am
Posted on Apr 12, 2007 6:06 am
I chose to use a group instead of setting a variable. Cause you can always set a variable for on/off switch. Example: set %banpun on
if (%banpun == on) { punish the nick }
However, using a group as a switch, you always know whether its on or off. ;)
if (%banpun == on) { punish the nick }
However, using a group as a switch, you always know whether its on or off. ;)
mIRC Snippet:
Ban Protect
Posted on Apr 12, 2007 5:53 am
Posted on Apr 12, 2007 5:53 am
#banpun off
#banpun end
what is that?
#banpun end
what is that?
mIRC Snippet:
Mass Whois
Posted on Feb 27, 2007 12:40 pm
Posted on Feb 27, 2007 12:40 pm
Why timers?
Just let the last response of the previous /whois command trigger the next. Its then impossible the server sendqueue overflows.
Regarding the server receivequeue, if the sendqueue never overflows, then the receivequeue doesnt either, and /whois nick1,nick2 etc doesnt suffer this problem at all, since the server sends a RAW 416 too many lines in your output, which just stops the responses after that amount, so a part of the passed nicks need to be re-whoissed.
Just let the last response of the previous /whois command trigger the next. Its then impossible the server sendqueue overflows.
Regarding the server receivequeue, if the sendqueue never overflows, then the receivequeue doesnt either, and /whois nick1,nick2 etc doesnt suffer this problem at all, since the server sends a RAW 416 too many lines in your output, which just stops the responses after that amount, so a part of the passed nicks need to be re-whoissed.
mIRC Snippet:
Mass Whois
Posted on Feb 23, 2007 6:42 pm
Posted on Feb 23, 2007 6:42 pm
The quickest and most reliable way to find all the numerics you need is to first turn on debug with /debug -p @debug, and then do a /whois on yourself with IRCop priveliges when you have an SWHOIS set. You can set an SWHOIS for yourself in your operblock; there may also be a way to temporarily set one using the OperServ RAW command (don't mess with that if you don't know what you're doing though, of course).
Also on large channels, it is likely to RecvQ you off. While a SendQ could be prevented by combining it into a /whois nick1,nick2,..,nickN command, this won't do anything for your RecvQ, since the server still has to send you the same amount of information. In order to prevent a RecvQ flood on larger channels, you should use timers... PM me if you want specific info on how.
Also on large channels, it is likely to RecvQ you off. While a SendQ could be prevented by combining it into a /whois nick1,nick2,..,nickN command, this won't do anything for your RecvQ, since the server still has to send you the same amount of information. In order to prevent a RecvQ flood on larger channels, you should use timers... PM me if you want specific info on how.
mIRC Snippet:
Mass Whois
Posted on Feb 19, 2007 3:52 am
Posted on Feb 19, 2007 3:52 am
Go check on sites, they got all the raw numerics, and most of em are ezplained aswell. Try googling.
mIRC Snippet:
Mass Whois
Posted on Feb 18, 2007 10:12 pm
Posted on Feb 18, 2007 10:12 pm
Thanks for the info, Qc. I have yet to learn all the raw returns. Ill update this as soon as i can. I'll also adjust it so that it won't flood disconnect oneself.
mIRC Snippet:
Mass Whois
Posted on Feb 18, 2007 4:13 am
Posted on Feb 18, 2007 4:13 am
Just some ideas to make this better
- If you're not an IRCOP you probably get a flood disconnection too, this needs a queue.
- Some networks support doing whois nick1,nick2,...,nickN, which helps in avoiding flood disconnection. A testrun can determine this.
- A script should not output data requested by other scripts or from command line. So the script has to store the fact it did a whois for a certain nick, and only process the response after checking it has requested it.
- There are alot more raws that can be returned, for which you don't have events, they will flood the status window, since not halted.
- Make it multiserver. Put the network name in variables, custom window names, etc.
- If you're not an IRCOP you probably get a flood disconnection too, this needs a queue.
- Some networks support doing whois nick1,nick2,...,nickN, which helps in avoiding flood disconnection. A testrun can determine this.
- A script should not output data requested by other scripts or from command line. So the script has to store the fact it did a whois for a certain nick, and only process the response after checking it has requested it.
- There are alot more raws that can be returned, for which you don't have events, they will flood the status window, since not halted.
- Make it multiserver. Put the network name in variables, custom window names, etc.
mIRC Snippet:
KBOM (kick ban op mode) Control
Posted on Jan 29, 2007 8:48 pm
Posted on Jan 29, 2007 8:48 pm
It Dont Work Help
mIRC Snippet:
Mass Modes
Posted on Jan 19, 2007 4:06 am
Posted on Jan 19, 2007 4:06 am
The triggers are, /mass -v or /mass v . The available modes are vhoaqebI. The '+' is assummed if '-' isn't in the mode your trying to mass.








