Jump to content

VFA41_Hedgehog

Members
  • Posts

    126
  • Joined

  • Last visited

Everything posted by VFA41_Hedgehog

  1. Forgive me if you are already aware of this; but SimApp Pro checks and re-writes your EXPORT.LUA file every time you start it (like probably every time you turn on the PC). So whatever manual edits you make are probably being undone by SimApp Pro. How do you stop that from happening? You have to check the box under the FIX LUA button that says:
  2. Thanks for letting us know that Winwing responded to at least ONE user...
  3. [SOLVED by 22 NOV SimApp Pro update.] Everyone I've been able to track down who has the Winwing Startup panel with APU switch and light is reporting the same issue since the SimApp Pro update this week. When the F/A-18 APU light is ON, the Startup panel APU light is OFF. When the F/A-18 APU light is OFF, the Startup panel APU light is ON. Exactly opposite of what it should be. No response from Winwing to several emails and messages from different users. Anybody else seeing this? Anybody with Startup panel NOT seeing this? (Yes, we've tried the FIX LUA button, but no joy.)
  4. Again, you'd like to think so, but nope. But, yeah, for what it's worth, I can, and did, read that guidance presented.
  5. TARGET says my stick is FW v11. Thrustmaster says latest FW is v12, and is required for Hornet grip to work properly. I downloaded the instructions to update the firmware, but it refers to an updater utility that is not present on my PC. Unable to find it elsewhere. SOLVED: If the Firmware Updater utility was not installed on your machine initially, you have to download the DRIVER set. Then run the DRIVER install. It will appear to be attempting to install the TPR drivers on your machine (even if you don't own them) (probably crappy French - English translation) but run it anyway. When it is done, you will have a new Thrustmaster HOTAS Warthog - TPR folder in your Windows START menu. Therein you will find the Firmware Updater utility.
  6. Follow the action as the Black Aces engage in Operation Damascus Dawn at VFA-41 Black Aces
  7. While the VFA-41 Black Aces remain fully engaged in Operation Persian Gauntlet, ENS Maniac has completed the squadron's comprehensive, multi-phased basic qualification program and earned his Wings of Gold as a Naval Aviator! VFA-41 Black Aces
  8. Please make the following commands bindable: Screen shot 'Ready pre-contact' Both of these would be VERY helpful as HOTAS buttons... of course I could use TARGET software to do it, but I don't want to have to run TARGET in the background if I don't have to. (And, no, not interested in installing and running Voice Attack just for this, either.)
  9. Also, does the real jet really not have a 'Dump Open' light or advisory? Seems like it would have some sort of visual indication for the pilot other than switch position.
  10. I guess I was confused by the part where you told him that if he has 16GB RAM he should set his pagefile size to 16GB. "...as you have 16GB RAM you should set pagefile to 16282 MB"
  11. Whoa. Are you saying that he should set his Windows pagefile to the same size as the amount of RAM on the machine?? That is contrary to everything I have read about pagefile size.
  12. Especially for anyone who use the Winwing PTO panel. LAUNCH BAR commands discussed in this thread about Hook Bypass switch.
  13. This mod to the F/A-18C joystick DEFAULT.LUA adds separate LAUNCH BAR EXTEND and RETRACT commands as shown below. This is primarily for anyone who use the Winwing Take-Off Panel or any 2-active position controller switch. a) Look for the DEFAULT.LUA file somewhere around here: C:\Program Files\Eagle Dynamics\DCS World\Mods\aircraft\FA-18C\Input\FA-18C\joystick b) Open it with a text editor and find the section called LEFT VERTICAL PANEL. c) Find the line for the Launch Bar Switch that looks like this: down = gear_commands.LaunchBarSw, up = gear_commands.LaunchBarSw, cockpit_device_id = devices.GEAR_INTERFACE, etc.... d) Just below that line, copy and paste these two lines: { down = gear_commands.LaunchBarSw, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 0.5, name = _('Launch Bar Control Switch - EXTEND'), category = {_('Left Vertical Panel')}}, { down = gear_commands.LaunchBarSw, cockpit_device_id = devices.GEAR_INTERFACE, value_down = -0.5, name = _('Launch Bar Control Switch - RETRACT'), category = {_('Left Vertical Panel')}}, e) Save the DEFAULT.LUA file. You will now be able to bind the Winwing PTO panel LUANCH BAR switch positions as shown. This, of course, will need to be repeated after every DCS update or patch (or until ED does it themselves... don't hold your breath.)
  14. a) After the DCS update/patch, you have to shutdown and restart SimApp Pro in order for it to re-add the Hook Bypass options that the DCS update/patch removed. b) Look for the DEFAULT.LUA file somewhere around here: C:\Program Files\Eagle Dynamics\DCS World\Mods\aircraft\FA-18C\Input\FA-18C\joystick c) Open it with a text editor and find the section called LEFT VERTICAL PANEL. d) In that section, find the lines related to Hook Bypass. There will now be a separate line for FIELD and for CARRIER. e) Find the typo in those two lines. It says "CPT_LIGTHS" in 2 places. Fix them to say "CPT_LIGHTS" f) Save the DEFAULT.LUA file. When you restart DCS and look in F/A-18C controls, you will see the two bindable options for FIELD and CARRIER as shown in the original post. Assign the switch positions. It will work now. NOTE: I don't know exactly how SimApp Pro works. (I'm not sure that anybody does...) This process MAY require that you have activated a Key Binding profile within SimApp Pro. The Launch Bar switch is an entirely different ballgame. WinWing has not chosen to provide discrete switch positions for that switch for some reason. There are other edits you can make to the DEFAULT.LUA fie to make it work, but that's another discussion (see below).
  15. After today's update, I'm pretty sure I confirmed that Winwing's SimApp Pro adds the CARRIER and FIELD option lines in DEFAULT.LUA. HOWEVER, their script inherited the "CPT_LIGTHS" typo from ED. When ED fixed it, Winwing did not (yet), so the typo is re-introduced and must be manually fixed after each patch/update.
  16. HOWEVER.... I managed to fix it. Note please in the DEFAULT.LUA, Eagle Dynamics failed to correct every instance of the "ligths" typo. The typo still appears in the lines above in the LEFT VERTICAL PANEL section. Fix it in two places. Works properly now as I set the bindings in the original post. Hopefully (though doubtfully) ED will fix this. If not, it will need to be manually corrected after every patch in order for those bindings to function.
  17. This is ALREADY in the DEFAULT.LUA after v2.7 Open Beta. { down = cptlights_commands.HookBypass, up = cptlights_commands.HookBypass, cockpit_device_id = devices.CPT_LIGHTS, value_down = 1.0, value_up = 0.0, name = _('HOOK BYPASS Switch - FIELD/CARRIER'), category = {_('Left Vertical Panel')}}, { down = cptlights_commands.HookBypass, cockpit_device_id = devices.CPT_LIGTHS, value_down = -0.5, name = _('HOOK BYPASS Switch - CARRIER'), category = {_('Left Vertical Panel')}}, { down = cptlights_commands.HookBypass, cockpit_device_id = devices.CPT_LIGTHS, value_down = 0.5, name = _('HOOK BYPASS Switch - FIELD'), category = {_('Left Vertical Panel')}}, There is NOW a separate option for FIELD and for CARRIER despite what some ill-informed persons may tell you. [EDIT] Problem corrected by fixing the typos in RED above.
  18. I am using an edited DEFAULT.LUA file, HOWEVER the binds illustrated above ARE default sim commands (not added by the edit). They don't work. In the Left Vertical Panel section.
  19. Tried to bind to Warthog throttle buttons and Winwing PTO panel switch. DCS 'sees' the inputs, but does nothing in the cockpit when bound as shown.
  20. Please make Screen Shot a bindable command so that it can be assigned to a HOTAS button press.
  21. F/A-18C HOOK BYPASS switch does not respond to any buttons bound from any device. EDIT: this appears to function as a magnetically held switch that snaps to CARRIER when the plane is powered down. Tested with engines running and buttons bound from both Winwing PTO panel and from Warthog throttle.
  22. After only a 2-week R&R and inter-deployment training period, the Black Aces of VFA-41 are on their way again to the volatile Persian Gulf region. VFA-41 Black Aces
×
×
  • Create New...