Skip to content
MSN

Mass Spectator

A TG007 community discussion started by oosho.

Discussion 2 posts
Page 1 of 1
Open
Topic #6653 · 2 published posts · 477 views

Hey guyzz,

 

I need the code that makes mass voice and another one that mass mass devoice like

 

`mv ===> mass voice

`mdv===> mass devoice

 

but works only on normal members and doesn't affect hosts or owners

 
alias mass.voice {
 %i = 0  
 %nicks = ""  
 :nextnick
 inc %i 
 if ($nick(#,%i) == $me) { inc %i }
 if ($nick(#,%i) == $null) { if ($len(%nicks) > 0) mode # +vvvvvv %nicks | halt }
 %nicks = %nicks $nick(#,%i) 
 if (6 // %i) { mode # +vvvvvv %nicks | %nicks = "" } 
goto nextnick 
}

menu channel {

mass.voice : $mass.voice

}

And for devoice it's the same just set -v but that i will leave for you so that u actualy learn something.

Pomperom