Thank you for the reply. Do you mean like this:

Code:
  var %i = 1
  while (%i <= 3) {
    msg #BIGZIPZ This is line %i / 3
    timer 1 5 continue
    inc %i
    break
  }


I added the 5 second timer to try and make the thing pause for 5 seconds before sending the next message but it doesn't seem to work.

Thanks again.