ok, thanks Riamus2, what you gave me worked perfectly. I have found another problem though :|

Code:
alias check {
  if ($left($1-,1) != $chr(47)) {
    if ($len($editbox($active)) >= 1) {
      if (%Typing != $true) {
        .msg $active Typing-Message: $true
      }
      set -u15 %Typing $true
    }
    else {
      if (%Typing) {
        .msg $active Typing-Message: $false
        unset %Typing
      }
    }
  }
}

I added the second line..
if ($left($1-,1) != $chr(47)) {
but, it acts like the if statement is true, which it isn't, CHR 47 = / I don't want it to say i'm typing a message if I'm using / at the beginning.


-Kurdish_Assass1n