

bradleyjs
-
Posts
555 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Posts posted by bradleyjs
-
-
Look straight ahead and press F12.
Off the top of my mind, I think F9 is the default. But, I do have mine mapped to F12 as well. And that will fix the view issue.
-
Hey everyone. I’m running into the same issue where VA will at times work and then stop. It will also Close automatically. May I ask you if any or all of you are using Skatezilla DCS utility to start it automatically? It seems that as sonnnas I did that this mess started to happen.
Wood
I use Skatezilla‘s tool to start DCS, but I also wrote a custom .cmd (PowerShell) script to start VoiceAttack/VAICOM, which runs as Admin. VAICOM, CTDs very infrequently, but it does happen. :cry: Overall everything works just fine.
-
Just to throw this out there on this thread, especially for single player - VAICOM (via VoiceAttack) is another system that helps with comms. I use the TM A-10C HOTAS and it works perfectly fine.
VAICOM Forum
-
-
The Thrustmaster Warthog Throttle is bound automatically - this is just an FYI.
-
After a quick test flight, I seemed to notice a bit more thrust too — which was definitely needed.
-
-
Here I am with the promised feedback report: I tried the new 'Realistic ATC' extension and it simply works like a charm, nothing else to say.
As always, thanks Hollywood for your outstanding work! :thumbup:
I just tested the new update and the Realistic ATC plug-in and all works perfectly for me .... just chiming in..
-
Same here - been pulling hair out trying to figure it out.
-
As per sthomson: I agree and personally highly recommend the VoiceAttack / VAICOM Pro solution. I’ve used the products for several years now and it works great especially with a HOTAS setup. Additionally, both products are maintained and updated on a regular basis.
-
Roger that MAXsenna! Fingers crossed and we’ll just have wait and see.
-
Being that SuperCarrier is being released on 4/15/20, I’m assuming that VAICOM will be compatible with is new module. Cporrect?
-
Ok Hollywood, it now loads and it all seems to be working. I will continue to test a bit further. Thanks!
-
Just want to chime in here too. I did upgrade to the latest beta of VA and of course the “DCS World open beta 2.5.6.43453” version. DCS always halts at 10% - then I repair and run DCS without VA and it will then load.
I’m not bitching about this issue, only trying offer my insight.
So, Hollywood, if need a beta tester, I will help you as much as possible. I’m at your disposal sir.
Jeff
-
Well, ED can count me in to purchase, regardless of cost, as soon as it’s ready for Early Access/download!
-
I find the brakes to be a bit too mushy and not overly effective myself.
-
I like everything :)
I do too, especially having External Lights now. :cry:
-
Roger that - I completely understand.
-
I just tried the replay on the “stable” version and it does te same
-
Any track I reply ends in destruction of the aircraft. At first, I thought it was due to each OB update but testing proved to not be the case. It seems as though the coordinates of the map and what the aircraft does aren’t in sync. The replay system as it is now seems useless. I don’t recall having these issues several updates ago.
I’m just reporting my findings so that ED is aware of this issue.
-
Yep. TCTO, I-TCTO, OTI...all still used. No reason to change IMO. You’ll still see the TCTO number identifiers in the front of all the manuals.
Excellent! Thanks. :thumbup:
-
One thing we finally got on board with was flipping to digital manuals, TOs, etc. There’s still a few, or were a few, that were still kept on paper like EPs for example. For those that have access to the stuff now, it’s one complete book, so the TODAs no longer have to post changes, do pen and inks, page changes, etc. it all comes from a digital library too, so update one and it updates to the current version unless folks are working off downloaded copies.
Curious to know if the terminology TCTO is still in use? I was active duty USAF back in the 80’s.
-
Alas, no.
Damn! It’s early dark out there, especially on the NTTR map. Thanks! :pilotfly:
-
VAICOM PRO plugin for VoiceAttack
in VAICOM
Posted · Edited by bradleyjs
4. Run Voice Attack as Admin.
On my system, this a key factor. Plus, I had to write a script to Stop/Start certain processes to get VA/VAICOM to work.
I have included the .cmd contents and it is executed as an Admin. Hope this helps anyone that might have similar issues.
::--------------------------------------------------------------------
:: Jeffrey S. Bradley, 9/22/2018 (Rev v1.1 11/26/2018)
::--------------------------------------------------------------------
::
:: The initial part of this script is for re-calling this same
:: batch file but making the CMD Window run Minimized. The VoiceAttack
:: app window displays as a normal window.
::
:: This script stops both NahimicSvc32Run/NahimicSvc32Run
:: tasks (in case they were running) and stops the NahimicService
:: and kills the NahimicSvc64 process before looping to
:: to verify that all processes are no longer running.
:: Finally, it then starts the VoiceAttack executable and
:: subsequently restarts the processes.
::
:: Note: This MUST be 'Run as an administrator'
::--------------------------------------------------------------------
::--------------------------------------------------------------------
@ECHO OFF
IF "%1"=="done" GOTO RunTime
START "" /MIN %0 done
EXIT
:RunTime
TITLE VoiceAttack CMD
CD C:\JSBCommands
SCHTASKS /END /TN NahimicSvc32Run
SCHTASKS /END /TN NahimicSvc64Run
SC STOP NahimicService
TASKKILL /F /IM NahimicSvc32.exe
TASKKILL /F /IM NahimicSvc64.exe
TASKKILL /F /IM NahimicService.exe
:StartOver
TASKLIST | FINDSTR /I "Nahimic" >nul
IF %ERRORLEVEL% EQU 1 (GOTO End) ELSE (GOTO StartOver)
:End
CD "C:\Program Files (x86)\VoiceAttack"
"C:\Program Files (x86)\VoiceAttack\VoiceAttack.exe"
SC START NahimicService
EXIT
::--------------------------------------------------------------------