You gotta see it as this execution stack:

<enter key>
on input event
draw display in channel

So if you want something to display after the original input. you gotta halt mIRC and put your message after of the original one.
Code:
on *:input:#: { 
  if ($1 == 1st) { 
    say $1-
    say something after original message.
    halt
  }
}

Last edited by Mpdreamz; 24/12/06 03:07 PM.