Author Topic: Type what I'm saying in game possible?  (Read 7884 times)

ChevyFan

  • Guest
Type what I'm saying in game possible?
« on: February 25, 2017, 04:19:48 AM »
Question..

I have a bunch of commands that work for me in game when I want to say something to my team mates so I don't have to type it all out..

BUT, sometimes I need to be able to type something that I don't have a command for a specific phrase..

so would it be possible to have VoiceAttack type in real time what I am saying into the Mic into the in game chat?

Thanks!

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Type what I'm saying in game possible?
« Reply #1 on: February 25, 2017, 09:20:02 AM »
It can't type words at the moment you're speaking them, but it can once you finish a sentence and pause.

You can use the dictation mode for this, however note that dictation is the weakest mode of the Microsoft Speech Recognition engine, so accuracy may not be satisfactory.

EDIT: As an example, this command will type whatever you speak, until you press enter:
Code: [Select]
Start Loop While : [{STATE_KEYSTATE:ENTER}] Equals '0'
Start Dictation Mode (Clearing Dictation Buffer)
Start Loop While : [{EXP:{DICTATION} + {STATE_KEYSTATE:ENTER}}] Equals '0'
End Loop
Stop Dictation Mode
Quick Input, '{DICTATION}'
End Loop
you'll have to pause every once in awhile, so the recognition can catch up and type things out.
« Last Edit: August 02, 2020, 03:33:25 AM by Pfeil »