I'm trying to make my script message results from a search that someone can type in. However, it floods out when it returns the results. Here is the code I have...
alias resultz {
 var %x = 1
 while (%x <= $lines(Results.txt)) {
  msg $chan $replace($read(Results.txt,%x),--,:,-,:)
  inc %x
 }
}
Is there anyway I can make it slow down so it won't flood itself out?