Jump to content

Bailey

Members
  • Posts

    1802
  • Joined

  • Last visited

Everything posted by Bailey

  1. Maybe a topic for another thread, but I got it working after much trial and error. Mostly error. Everything that you see below is flashing appropriately. I play in VR so I wont see these, but I am glad to help. If you make a thread, feel free to @ me if you want my input. There were lots of ways to go wrong and your module may require some unique code (which I have figured out too, for the apache at least.)
  2. Check the DCS Comms button to see if you have DCS IDs 3000 - 3006. (Ignore stuff after 3006)
  3. Target is hieroglyphics. I am wondering the sane with the leds. I *think* Winwing does something like that.
  4. Nah, you are fine. Juist takes time to learn a new skill. Take a look at the chart here: https://github.com/asherao/DCS-ExportScripts/wiki/AH-64D-Apache You will see this line here: Put 3004 in DCS-Interface here where it says "Title Text" > "DCS ID": And that's it!
  5. "Yes" and "no". The red switches are ON-OFF out of the box. You (as have I) can make them ON-ON via the VIRPIL software. The same can be done with the Warthog via TARGET. Many ways to go about it. Lots of choices.
  6. 3-way switches are kind of tricky. Thanks for the suggestion. Added PLT NVS MODE Switch
  7. It seems that the apache MPD information only updates when the screen is visible. Which makes sense for the user, but does not do too well for a stream deck. If anyone has suggestions or ideas for implementation, my ears are open. I figured that a SD profile for the apache would be interesting because all (most) of the information is already digital and "in your face" via the IHADSS and MPDs. With that said, it is easy to navigate the SD in VR, which is nice.
  8. Added AH-64D Flare and Chaff readouts. https://github.com/asherao/DCS-ExportScripts/wiki/AH-64D-Apache https://github.com/asherao/DCS-ExportScripts/blob/master/Scripts/DCS-ExportScript/ExportsModules/AH-64D_BLK_II.lua
  9. A10 does. You can see Left/Right engine throttle Set OFF in there. Unless you were addressing other posts, then IDK.
  10. I also have difficulties interacting with that menu with VR.
  11. You can give it a shot. Here are some examples. https://forum.dcs.world/topic/297237-apache-special-for-joystickcontrollerhotas-keybinds/
  12. We talked on discord. Unless that was a fake haha
  13. Updated to DCS Version 2.7.11.22041. Added Parking Brake
  14. For reference, here is my game default after pressing Num5, NumEnter, and then tapping Num2 twice. I hope that creates a "baseline" on which to compare. Specifically the location and profile of the stick in relation to the head/eyes.
  15. Remember how some modules have had those useful "ON else OFF" type keybinds? Here are are the ones that I have personally found useful. They can be used for two-way switches that only send a signal in one way. You can find these types of switches on the Virpil CM2/CM3 and the Thrustmaster Warthog, for example. These are working in DCS version 2.7.11.22041 Their use or effectiveness in other DCS versions is not guaranteed. The files are likely to be reset/erased if you do a DCS repair or update. Please keep a backup in a safe location. Do not do these mods if you are not comfortable or prepared to edit some DCS code by hand. These changes are safe for Single Player and Multiplayer to include Intregity Check. Instructions: - Copy the code that you want from one of the boxes below the instructions. - Paste the code into one these files:... `C:\...\DCS World OpenBeta\Mods\aircraft\AH-64D\Input\AH-64D_PLT\joystick\default.lua` `C:\...\DCS World OpenBeta\Mods\aircraft\AH-64D\Input\AH-64D_CPG\joystick\default.lua` at this location near the top: After restarting DCS you should see your new keybind: Feel free to request keybinds after you have attempted to add it yourself and made sure that the request has not already been fulfilled elsewhere in this thread. For those who are successful, please share the knowledge and fun! Enjoy! Custom Block (For keeping things orderly) --------------------------------------------- -- Custom ----------------------------------- --------------------------------------------- Trigger Guard { down = hotas_commands.CYCLIC_TRIGGER_GUARD, up = hotas_commands.CYCLIC_TRIGGER_GUARD, cockpit_device_id = devices.HOTAS_INPUT, value_down = 1.0, value_up = 0.0, name = _('Weapons Trigger Guard - OPEN else CLOSE'), category = {_('Cyclic Stick'), _('HOCAS'), _('Custom')}}, { down = hotas_commands.CYCLIC_TRIGGER_GUARD, up = hotas_commands.CYCLIC_TRIGGER_GUARD, cockpit_device_id = devices.HOTAS_INPUT, value_down = 0.0, value_up = 1.0, name = _('Weapons Trigger Guard - CLOSE else OPEN'), category = {_('Cyclic Stick'), _('HOCAS'), _('Custom')}}, Ignition / Battery Switch { down = electric_commands.MIK_EXT, up = electric_commands.MIK_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.5, value_up = 0.0, name = _('Master Ignition Switch - BATT else OFF'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = electric_commands.MIK_EXT, up = electric_commands.MIK_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = 0.5, name = _('Master Ignition Switch - OFF else BATT'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, APU Cover { down = engine_commands.APU_StartBtnCover_EXT, up = engine_commands.APU_StartBtnCover_EXT, cockpit_device_id = devices.ENGINE_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('APU Pushbutton Cover - CLOSE else OPEN'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = engine_commands.APU_StartBtnCover_EXT, up = engine_commands.APU_StartBtnCover_EXT, cockpit_device_id = devices.ENGINE_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('APU Pushbutton Cover - OPEN else CLOSE'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, CMWS Operation Switch AUTO / BYPASS { down = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, up = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Operation Switch - AUTO else BYPASS'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, up = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Operation Switch - BYPASS else AUTO'), category = {_('CMWS Control Panel'), _('Custom')}}, CMWS Flare Safe / Arm { down = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, up = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Flare Squibs Switch - SAFE else ARM'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, up = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Flare Squibs Switch - ARM else SAFE'), category = {_('CMWS Control Panel'), _('Custom')}}, CMWS Mode { down = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, up = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Mode Switch - CMWS else NAV'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, up = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Mode Switch - NAV else CMWS'), category = {_('CMWS Control Panel'), _('Custom')}}, CMWS Power { down = CMWS_commands.CMWS_PWR_EXT, up = CMWS_commands.CMWS_PWR_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = -1.0, name = _('CMWS PWR Switch - ON else OFF'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_PWR_EXT, up = CMWS_commands.CMWS_PWR_EXT, cockpit_device_id = devices.CMWS, value_down = -1.0, value_up = 0.0, name = _('CMWS PWR Switch - OFF else ON'), category = {_('CMWS Control Panel'), _('Custom')}}, Parking Brake { down = gear_commands.AH64_ParkingBrake_EXT, up = gear_commands.AH64_ParkingBrake_EXT, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('Parking Brake Handle - Pull else Stow'), category = {_('Systems'), _('Custom')}}, { down = gear_commands.AH64_ParkingBrake_EXT, up = gear_commands.AH64_ParkingBrake_EXT, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('Parking Brake Handle - Stow else Pull'), category = {_('Systems'), _('Custom')}}, PLT NVS MODE Switch { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('PLT NVS MODE Switch - FIXED else NORM'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('PLT NVS MODE Switch - NORM else FIXED'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = -1.0, value_up = 0.0, name = _('PLT NVS MODE Switch - OFF else NORM'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = -1.0, name = _('PLT NVS MODE Switch - NORM else OFF'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, All of the above --------------------------------------------- -- Custom ----------------------------------- --------------------------------------------- { down = hotas_commands.CYCLIC_TRIGGER_GUARD, up = hotas_commands.CYCLIC_TRIGGER_GUARD, cockpit_device_id = devices.HOTAS_INPUT, value_down = 1.0, value_up = 0.0, name = _('Weapons Trigger Guard - OPEN else CLOSE'), category = {_('Cyclic Stick'), _('HOCAS'), _('Custom')}}, { down = hotas_commands.CYCLIC_TRIGGER_GUARD, up = hotas_commands.CYCLIC_TRIGGER_GUARD, cockpit_device_id = devices.HOTAS_INPUT, value_down = 0.0, value_up = 1.0, name = _('Weapons Trigger Guard - CLOSE else OPEN'), category = {_('Cyclic Stick'), _('HOCAS'), _('Custom')}}, { down = electric_commands.MIK_EXT, up = electric_commands.MIK_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.5, value_up = 0.0, name = _('Master Ignition Switch - BATT else OFF'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = electric_commands.MIK_EXT, up = electric_commands.MIK_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = 0.5, name = _('Master Ignition Switch - OFF else BATT'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = engine_commands.APU_StartBtnCover_EXT, up = engine_commands.APU_StartBtnCover_EXT, cockpit_device_id = devices.ENGINE_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('APU Pushbutton Cover - CLOSE else OPEN'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = engine_commands.APU_StartBtnCover_EXT, up = engine_commands.APU_StartBtnCover_EXT, cockpit_device_id = devices.ENGINE_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('APU Pushbutton Cover - OPEN else CLOSE'), category = {_('Left Console'), _('Power Lever Quadrant'), _('Custom')}}, { down = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, up = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Operation Switch - AUTO else BYPASS'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, up = CMWS_commands.CMWS_BYPASS_AUTO_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Operation Switch - BYPASS else AUTO'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, up = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Flare Squibs Switch - SAFE else ARM'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, up = CMWS_commands.CMWS_ARM_SAFE_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Flare Squibs Switch - ARM else SAFE'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, up = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 1.0, value_up = 0.0, name = _('CMWS Mode Switch - CMWS else NAV'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, up = CMWS_commands.CMWS_CMWS_NAV_SW_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = 1.0, name = _('CMWS Mode Switch - NAV else CMWS'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_PWR_EXT, up = CMWS_commands.CMWS_PWR_EXT, cockpit_device_id = devices.CMWS, value_down = 0.0, value_up = -1.0, name = _('CMWS PWR Switch - ON else OFF'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = CMWS_commands.CMWS_PWR_EXT, up = CMWS_commands.CMWS_PWR_EXT, cockpit_device_id = devices.CMWS, value_down = -1.0, value_up = 0.0, name = _('CMWS PWR Switch - OFF else ON'), category = {_('CMWS Control Panel'), _('Custom')}}, { down = gear_commands.AH64_ParkingBrake_EXT, up = gear_commands.AH64_ParkingBrake_EXT, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('Parking Brake Handle - Pull else Stow'), category = {_('Systems'), _('Custom')}}, { down = gear_commands.AH64_ParkingBrake_EXT, up = gear_commands.AH64_ParkingBrake_EXT, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('Parking Brake Handle - Stow else Pull'), category = {_('Systems'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('PLT NVS MODE Switch - FIXED else NORM'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('PLT NVS MODE Switch - NORM else FIXED'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = -1.0, value_up = 0.0, name = _('PLT NVS MODE Switch - OFF else NORM'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, { down = electric_commands.NVS_MODE_KNOB_EXT, up = electric_commands.NVS_MODE_KNOB_EXT, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 0.0, value_up = -1.0, name = _('PLT NVS MODE Switch - NORM else OFF'), category = {_('Left Console'), _('NVS Mode Panel'), _('Custom')}}, Take a look at https://github.com/Munkwolf/dcs-community-keybinds for a ton of more keybinds you may find useful.
  16. Feel free to use these icons I uploaded recently for your profile. Looking forward to it! https://github.com/asherao/DCS-ExportScripts/tree/master/docu/Pics/AH-64D Apache
  17. Fair enough. If you vote for them to change, then I vote for them to stay
  18. I noticed this yesterday. I think it's a case of the cockpit not being symmetrical at the pilots. A pic would be nice to compare.
  19. Your image state change DCS ID is 310, which is Guard button. Change it to 403, which is Emergency Guard PLT Light.
  20. Thank you ED Web person for the addition!
  21. Done. Thanks for the request and the add.
  22. Agreed that it is difficult to see. It's movable, but finding a good place in this cockpit is a bit difficult.
×
×
  • Create New...