ok . i wrote two lines in order to enable or disable the autovoice for the top 10 uploaders .. here just 3 simple steps:
1. Add the set disable lines below the other set variables lines in ioBanana.tcl.
...
set disable(NEWLEADER) 0
set disable(VOICETOP10) 0
2. Go to proc userJoined and add disable to global list of variables:
global ioss disable
3. Always in proc userJoined modify this line:
putquick "MODE $chan +v $nick"
in this way:
if { [info exists disable(VOICETOP10)] } {
if {$disable(VOICETOP10) == 0} {
putquick "MODE $chan +v $nick"
}
}
I hope this will help someone!
|