Thanks mate, it works well)
All the counts are working, i got the variables with each value.
But when i'm trying to put the value of %command.<option>.times into chat, it's writing sth like this: <option>.times

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
  }

  msg $chan %command. $+ $remove(%cmd,$chr(32)) $+ .times

}