View Single Post
Old 11-12-2003, 02:00 PM   #6 (permalink)
Mick
Registered User
 
Join Date: Oct 2003
Location: UK
Posts: 6
Mick
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

Last edited by Mick; 11-12-2003 at 02:21 PM.
Mick is offline   Reply With Quote