Are you trying to send a message to all the users in the channel except for regular users?

Code:
 alias nmsg {
  var %e = 1
  while $nick(#,%e,a,r) {
    msg $v1 message here
    inc %e
  }
}   


Command: /nmsg
Code:
 

or 


alias nmsg {
  var %e = 1
  while $nick(#,%e,a,r) {
    msg $v1 $1-
    inc %e
  }
}   


Command: /nmsg message here

Last edited by xDaeMoN; 23/03/05 01:36 AM.