Do you mean you want ON *:INPUT to work like a normal say ON *:TEXT, in how it triggers after mIRC handles the event. and not like ON ^*:TEXT, which is how ON *:INPUT works. (its a pre event event, but doesnt use the ^)
If so you could simply call the code you want to trigger in a timer ex ".timer 1 0 alias.name.here $target $1-"
alias alais.name.here {
var %target = $1
tokenize 32 $2-
... your code here, but use %target instead of $target ...
}
or u could use a signal in the same method. (i dont really see the difference between a signal and a timer call to an alias, just that a signal can be trip multiple on signal events, but who writes them like that?!??!)
** I just had a thought, did you mean, someone elses ON INPUT events?