;on text if someone says !yell in a channel (#)
on *:text:*!yell:#:{
;count the number of nicks in channel and store number to a local variable %c_
var %c_ = $nick(#,0)
;while %c_ is not $null
while (%c_) {
;message in channel that users nick.
msg # $nick(#,%c_)
dec %c_
}
}