If you want to notify an ops channel and the user as well, you'd do:

Code:
on *:text:!admin:#channel:{
  .msg #opschannel $nick needs help in $chan $+ .
  .msg $nick The ops have been notified that you need help.  Someone will be with you shortly.
}


You can, of course, use .notice to tell the person who needs help that the ops were notified, or you can msg the channel ($chan instead of $nick) so that it's visible for everyone.

Btw, just so you know... your change to the original looping script is almost correct. You'd want to change both $nick($chan, parts to $nick(#opschannel, --- you did one, but not the other. However, because only ops would be in the ops channel, there's no need for the loop. Just wanted to let you know that you had the right idea.

Last edited by Riamus2; 05/03/10 02:30 AM.