Here is a "Mass Voicer" which could be found useful
Code:
on *:TEXT:!massvoice Channel:#: massvoice $chan
alias massvoice {
if ( $1 == $null || $me !isop # || $nick !isop # ) { halt }
set %mvoice1 1
set %mvoice2 2
set %mvoice3 3
:loop
mode $1 +vvvvvv $nick($1,%mvoice1,a,voh) $nick($1,%mvoice2,a,voh) $nick($1,%mvoice3,a,voh)
if $nick($1,%mvoice1,a,voh) == $null goto end
inc %mvoice1 3
inc %mvoice2 3
inc %mvoice3 3
goto loop
:end
unset %mvoice1
unset %mvoice2
unset %mvoice3
}
*EDIT as this is a loop that can have any number of %mvoice variables, its been cut down from 6 to three in order to save the frames, the unaltered script can be found
HERE or attached to the thread below as a zipped .mrc file
RipperRoo