yeah yeah i know it isnt nice....
and i aint using it for some stupid things...

i gots this code:

Code:
 

masso {
  if (# == $null)  { .echo -a You must use this command in a channel window. | halt }
  if ($me !isop #) { .echo -a You're not a channel operator! | halt }
  if ($nick(#,0) == 1) { .echo -a You're alone in this channel! | halt }
  else {
    tokenize 32 $chr(42)
    if ($chr(42) isin $1) || ($chr(63) isin $1) {
      var %a = 0
      while (%a <= $nick($chan,0)) {
        inc %a
        if ($nick($chan,%a) !isop $chan) && ($1 iswm $nick($chan,%a)) { var %n = $nick($chan,%a) %n }
        if ($gettok(%n,0,32) == 6) { mode $chan +oooooo %n | unset %n }
      }
      if (%n) { mode $chan +oooooo %n }
    }
    elseif ($1) {
      mode $chan +oooooo $1-
    }
  }
}

 


thing is that it is limited by 6
but i want it to use $modespl so it is limited by network

anyone willing to re-make it (just in that part) ?
coz i dunno what should it do...
to set $modespl in variable or ???

Last edited by raZOR; 04/04/06 10:33 AM.

IceCapped