Grr, once again, i have run into a problem (yeah, i know, who woulda thought!) My final script looks like this:
Code:
on *:INPUT:*:{
  if ($left($1,1) == /) { .disable #st | / $+ $1- | .timer 1 3 .enable #st | halt }
  else say $+(4,$1-) | halt
}
#st end
menu channel {
  Talkers
  .Script Talker
  ..Enable: .enable #st
  ..Disable: .disable #st
  )


But when i try to put a highlight in, it messes everything up....it puts it back to regular, default black. I used this script to make the color and highlight appear:
Code:
on *:INPUT:*:{
  if ($left($1,1) == /) { .disable #st | / $+ $1- | .timer 1 3 .enable #st | halt }
  else say $+(8,2,$1-) | halt
}
#st end
menu channel {
  Talkers
  .Script Talker
  ..Enable: .enable #st
  ..Disable: .disable #st
  )

Now, the text is all black, default. I am going to assume that the commas are confusing the script.....what is the way to fix THIS problem?! AGAIN: THANKS AND YOU HAVE ALL BEEN SO MUCH HELP!