Author Topic: Hello! new user here, need help with "on my mark"  (Read 915 times)

myrarc

  • Newbie
  • *
  • Posts: 2
Hello! new user here, need help with "on my mark"
« on: February 02, 2021, 02:24:40 AM »
hello! i just bought VoiceAttack from steam for playing with Elite Dangerous
i currently got no hcs voice pack and are not interested on getting one as i only use this as my third hand
is it possible to create a command like "disengage on my mark" and then disengage after i say "now" or something similar?
Thanks!

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Hello! new user here, need help with "on my mark"
« Reply #1 on: February 02, 2021, 08:46:24 AM »
You could use the "Wait For Spoken Response" action for that, E.G.
disengage on my mark
Code: [Select]
Wait for spoken response: 'now;mark'
Press D key and hold for 0,03 seconds and release
If you set the timeout to 0, and don't check the "Continue on any Speech" option, the command will wait indefinitely (meaning it will keep running in the background until you either say "now" or "mark", or stop the command).

If you do want the command to time out, it could be set up something like this:
Code: [Select]
Wait for spoken response: 'now;mark'
Begin Text Compare : [~response] Has Not Been Set
    Say, 'Disengage timed out'
End Condition - Exit when condition met
Press D key and hold for 0,03 seconds and release

myrarc

  • Newbie
  • *
  • Posts: 2
Re: Hello! new user here, need help with "on my mark"
« Reply #2 on: February 03, 2021, 06:49:08 AM »
You could use the "Wait For Spoken Response" action for that, E.G.
disengage on my mark
Code: [Select]
Wait for spoken response: 'now;mark'
Press D key and hold for 0,03 seconds and release
If you set the timeout to 0, and don't check the "Continue on any Speech" option, the command will wait indefinitely (meaning it will keep running in the background until you either say "now" or "mark", or stop the command).

Thank you so much, this helps a lot!