/say %command.takemetothestars


And, since you originally wanted to count the times that was said:

Code:
on *:text:!command *:#:{
  var %cmd = $gettok($1-,2-,32)
  if (!%command. $+ $remove(%cmd,$chr(32))) {
    set %command. $+ $remove(%cmd,$chr(32)) %cmd
  }
  else {
    inc %command. $+ $remove(%cmd,$chr(32)) $+ .times
  }
}


In this case %command.takemetothestars holds the option,
and the %command.takemetothestars.times the number of times used.

Last edited by EUDIS1980; 09/02/15 08:22 PM.