ok, this is what I have come up with, I have used echo for right now so I could test it, what's happening is I don't want to keep on sending messages to the other person saying 'Typing-Message: $true/$false' because I might get killed for flooding. so, is there a way to make this happen only once

Code:
on *:ACTIVE:?: {
  if (*!*@XBConnect.com* iswm $address($active,2)) {
    ;Since it's going to be for Team-XBC ^^
    timercheck -m $+(100,$str(00,6)) 430 check
  }
}
on *:ACTIVE:#: {
  if ($timer(check)) { timercheck off }
  if ($timer(msg)) { timermsg off }
}
alias check {
  if ($len($editbox($active)) == 1) { echo -ag Typing-Message $true }
  ; This stops on two, which is good. ^^
  if ($len($editbox($active)) < 1) { echo -ag Typing-Message: $false }
  ; THis doesn't stop on 0, which is bad ^^
}


Examples:




-Kurdish_Assass1n