In the games, where are some "shortcut voice commands" i want to make more shortcuts, zo use it.
For example: In Wolfenstein enemy territory to "call enginer" u need to press V24, to say Hallo u need to press V54,to say Good bye V55,and i created some script,that hides those commands only by 1 button each - its really great ... but there are many commands,and ALL letter buttons are occupied for those "commands" ... ... and i need more.
So i modified that script,and trying to occupate other buttons than only "letter buttons" - like . or ? or ! or " or some other "symbols"...but it does not react when i press them.
Better Example:
----This works----
HotKeySet ( "a","needammo" )
Func needammo ()
send("V21")
EndFunc
----This not work---- (Becouse it not react on ".")
HotKeySet ( ".","needenginer" )
Func needenginer ()
send("V24")
EndFunc
How to make it work on that symbols?