Originally Posted By: Nillen
Ok, try this. Create a new remote file and paste this code:
Code:
on &*:input:#:  { 
  if ($left($1,1) == /) $1-
  else {
    if (!$halted) { 
      emsg # $1- 
      halt
    }
  }
}
alias emsg msg $1 7 $+ $2-

Make sure that this is in the LAST order all the time, otherwise you will send two messages when using another on input event.


Works perfectly! Thank you smile