Hi everyone, I have this script, it works, it just has a little problem:
Code:
alias listusers { 
  var %i 1
  var %users $nick(#,0)
  var %bots ORiGiN XBC-BOT |||{-_-}||| HeLPBoT
  while (%i <= %users) {
    if ($istok(%bots,$nick(#,%i),32)) { inc %i }
    echo -a $nick(#,%i) 
    inc %i
  }
}

The problem is that it doesn't say ORiGiN or |||{-_-}|||, but it does say XBC-BOT and HeLPBoT, which I don't want, anyone know why?