in DCS World some a/c have a keypad for entering data.
I would love to be able to press individual number keys via VA
e.g.
I say "KeyPad 2312"
I would like the program to select each key on the keypad (in the game) for each number
First a 2, then 3, then 1, then 2
I have a way to 'extract' each individual number using the MOD qualifier but is there a quick way to set up an IF statement similar to the {CASE} statement in other languages.
So it would be something like this (pseudo code)
Checkvalue of number
Case: 1 - execute command if it is a one
Case: 2 - execute command if it is a two
etc.
Any ideas