I was trying to make an alias that could be called by certains events, but it always failed. Here is the code :
Code:
checkop {
  ;$1 is the name of the chan
  if ($me isop $1) {
    set %i $line($1,0,1) | set %op 
    while (%i > 0) {
      if ($line($1,%i,1) !isop $1) { set %op $addtok(%op,$line($1,%i,1),46) }
      dec %i
    }
    while ($numtok(%op,46) > 0) {
      mode $1 +o $gettok(%op,$numtok(%op,46),46)
      set %op $deltok(%op,$numtok(%op,46),46)
    }
    unset %i | unset %op
  }
}

When only one person had to be opped, this was fine. But I don't know why, sometime, when multiple persons quitted, the script kept opping. But the token should be empty, so the script couldn't have more nicks to op !
Can someone help me ? grin