Author Topic: Using Wildcards  (Read 2165 times)

Krittol

  • Newbie
  • *
  • Posts: 16
Using Wildcards
« on: May 29, 2020, 02:41:01 AM »
Hi, i am trying to program in a command using wildcards.
My spoken command is as follows:

*Request[ing;] Docking

The intention is to be able to say something like "Sierra Alpha Lima 1 Requesting Docking"

Voice attack reads this as various things, one being "tear Al folly not one requesting docking". The important thing is each time it picks up a command it correctly picks up the words "requesting docking" at the end but still does not recognize it as a command, however if i just say "requesting docking" it does.

What am i doing wrong?

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Using Wildcards
« Reply #1 on: May 29, 2020, 04:35:18 AM »
Dynamic command sections automatically add spaces, so the command phrase isn't "*requesting docking", but rather "*request ing docking".

You'll want to define all words individually, E.G. "*[Request;Requesting] Docking".

Krittol

  • Newbie
  • *
  • Posts: 16
Re: Using Wildcards
« Reply #2 on: May 29, 2020, 05:34:08 AM »
Awesome that's got it working right thank you