Ultimate mass mode
Platform: mIRC
Published Dec 11, 2006
Updated Jan 25, 2008
This mass mode script lets you put in your own parameters, so there is only need for one script that will do everything for you.
alt +r and paste into your remotes section
usage /mass +v /mass +o /mass -o etc
URL:
http://www.mircscripts.org/comments.php?cid=3923 ;weaver irc.hackthissite.org #noobs,#help
;remade for source (matthew clayton)
alias mass {
if ($me isop $chan) {
var %prefix = $left($1,1), %mode = $right($1,1), %counter = 1, %nicks
while ($nick(#,%counter)) {
if ($nick(#,%counter) != $me) %nicks = %nicks $ifmatch
if ($numtok(%nicks,32) == $modespl) {
mode $chan %prefix $+ $str(%mode,$numtok(%nicks,32)) %nicks
%nicks = ""
}
inc %counter
}
if (%nicks) mode $chan %prefix $+ $str(%mode,$numtok(%nicks,32)) %nicks
}
}