Jump to content

Wintermute74

Members
  • Posts

    51
  • Joined

  • Last visited

Everything posted by Wintermute74

  1. Is that a screenshot from an earlier beta version? RC2 version of the manual was released on January 18th of this year, check your "DCS World\mods\aircraft\AJS_37\Doc" directory.
  2. Perhaps an update to the manual could be useful.
  3. Open Beta v2.5.5.34864 Occurs when selecting Create Fast Mission and starting from ramp (no problem when starting from runway or airborne or in Instant Action mission). Doesn't depend on whether you arm HE bombs through Mission Planner or Rearming and Refueling Window. F10 planning is non-related.
  4. CTD confirmed. Seems related to HE bombs in NAV or ANF modes. Crashes when switching from AKAN to LUFT/RR weapon selection modes.
  5. Engine mode And here are some missing keybinds for engine mode switches: {down = device_commands.ENGINE_Left_Mode, cockpit_device_id = devices.ENGINE, value_down = 0, name = _('Left Engine Mode PRI'), category = _('Engine Control Panel')}, {down = device_commands.ENGINE_Left_Mode, cockpit_device_id = devices.ENGINE, value_down = 1, name = _('Left Engine Mode SEC'), category = _('Engine Control Panel')}, {down = device_commands.ENGINE_Left_Mode, up = device_commands.ENGINE_Left_Mode, cockpit_device_id = devices.ENGINE, value_down = 1, value_up = 0, name = _('Left Engine Mode SEC else PRI'), category = _('Engine Control Panel')}, {down = device_commands.ENGINE_Right_Mode, cockpit_device_id = devices.ENGINE, value_down = 0, name = _('Right Engine Mode PRI'), category = _('Engine Control Panel')}, {down = device_commands.ENGINE_Right_Mode, cockpit_device_id = devices.ENGINE, value_down = 1, name = _('Right Engine Mode SEC'), category = _('Engine Control Panel')}, {down = device_commands.ENGINE_Right_Mode, up = device_commands.ENGINE_Right_Mode, cockpit_device_id = devices.ENGINE, value_down = 1, value_up = 0, name = _('Right Engine Mode SEC else PRI'), category = _('Engine Control Panel')},
  6. Engine crank And while I'm at it (adding unrequested keybindings), here's the missing neutral position for the engine crank switch: {down = device_commands.ENGINE_Crank, cockpit_device_id = devices.ENGINE, value_down = 0, name = _('Crank Engine OFF (neutral)'), category = _('Engine Control Panel')},
  7. Altimeters Although not currently in the requested list, here are possible solutions for radar and barometric altimeters in the pilot seat (introduced under new category "Altimeter"): {pressed = device_commands.RADARALT_Knob, cockpit_device_id = devices.RADARALTIMETER, value_pressed = 0.025, name = _('Radar Altimeter Limit Index - SLOW UP'), category = _('Altimeter')}, {pressed = device_commands.RADARALT_Knob, cockpit_device_id = devices.RADARALTIMETER, value_pressed = -0.025, name = _('Radar Altimeter Limit Index - SLOW DOWN'), category = _('Altimeter')}, {pressed = device_commands.RADARALT_Knob, cockpit_device_id = devices.RADARALTIMETER, value_pressed = 0.25, name = _('Radar Altimeter Limit Index - FAST UP'), category = _('Altimeter')}, {pressed = device_commands.RADARALT_Knob, cockpit_device_id = devices.RADARALTIMETER, value_pressed = -0.25, name = _('Radar Altimeter Limit Index - FAST DOWN'), category = _('Altimeter')}, {down = device_commands.RADARALT_Test, up = device_commands.RADARALT_Test, cockpit_device_id = devices.RADARALTIMETER, value_down = 1, value_up = 0, name = _('Radar Altimeter Control TEST'), category = _('Altimeter')}, {pressed = device_commands.ALTIMETER_Knob, cockpit_device_id = devices.BAROALTIMETER, value_pressed = 0.05, name = _('Barometric Altimeter Pressure Setting - SLOW UP'), category = _('Altimeter')}, {pressed = device_commands.ALTIMETER_Knob, cockpit_device_id = devices.BAROALTIMETER, value_pressed = -0.05, name = _('Barometric Altimeter Pressure Setting - SLOW DOWN'), category = _('Altimeter')}, {pressed = device_commands.ALTIMETER_Knob, cockpit_device_id = devices.BAROALTIMETER, value_pressed = 0.5, name = _('Barometric Altimeter Pressure Setting - FAST UP'), category = _('Altimeter')}, {pressed = device_commands.ALTIMETER_Knob, cockpit_device_id = devices.BAROALTIMETER, value_pressed = -0.5, name = _('Barometric Altimeter Pressure Setting - FAST DOWN'), category = _('Altimeter')}, {down = device_commands.ALTIMETER_Mode, up = device_commands.ALTIMETER_Mode, cockpit_device_id = devices.BAROALTIMETER, value_down = 1, value_up = 0, name = _('Barometric Altimeter Mode Switch RESET'), category = _('Altimeter')}, {down = device_commands.ALTIMETER_Mode, up = device_commands.ALTIMETER_Mode, cockpit_device_id = devices.BAROALTIMETER, value_down = -1, value_up = 0, name = _('Barometric Altimeter Mode Switch STDBY'), category = _('Altimeter')},
  8. Fire extinguishing system Has it been verified that the fire extinguishing system is implemented yet? I can pull fuel shutoff handles out (which do cutoff fuel after some seconds), but nothing happens when I click the fire extinguisher buttons below them (except giving me a button sound). But maybe you need an actual engine fire to verify...? I did however find (in clickabledata.lua) potential keybind solutions for both the fuel cutoff handles as well as the extinguisher buttons, see lua code below, but only the handles seem to work. The commands for the extinguisher buttons produces error messages when I send a logical 1 (and nothing happens when I send 0 or -1). I could of course be using a non-valid argument, but can't find any hints to valid ones anywhere. :dunno: {down = device_commands.FUELSYSTEM_Shutoff_L, cockpit_device_id = devices.FUELSYSTEM, value_down = 1, name = _('Fuel Shutoff - Left PULL OUT'), category = _('Fire System')}, {down = device_commands.FUELSYSTEM_Shutoff_L, cockpit_device_id = devices.FUELSYSTEM, value_down = 0, name = _('Fuel Shutoff - Left PUSH IN'), category = _('Fire System')}, {down = device_commands.FUELSYSTEM_Shutoff_L, up = device_commands.FUELSYSTEM_Shutoff_L, cockpit_device_id = devices.FUELSYSTEM, value_down = 1, value_up = 0, name = _('Fuel Shutoff - Left PULL OUT/PUSH IN (toggle)'), category = _('Fire System')}, {down = device_commands.FUELSYSTEM_Shutoff_R, cockpit_device_id = devices.FUELSYSTEM, value_down = 1, name = _('Fuel Shutoff - Right PULL OUT'), category = _('Fire System')}, {down = device_commands.FUELSYSTEM_Shutoff_R, cockpit_device_id = devices.FUELSYSTEM, value_down = 0, name = _('Fuel Shutoff - Right PUSH IN'), category = _('Fire System')}, {down = device_commands.FUELSYSTEM_Shutoff_R, up = device_commands.FUELSYSTEM_Shutoff_R, cockpit_device_id = devices.FUELSYSTEM, value_down = 1, value_up = 0, name = _('Fuel Shutoff - Right PULL OUT/PUSH IN (toggle)'), category = _('Fire System')}, {down = device_commands.FIRESYSTEM_Bottle_Fire_L, cockpit_device_id = devices.FIRE, value_down = 1, name = _('Fire Ext Bottle - Left'), category = _('Fire System')}, {down = device_commands.FIRESYSTEM_Bottle_Fire_R, cockpit_device_id = devices.FIRE, value_down = 1, name = _('Fire Ext Bottle - Right'), category = _('Fire System')},
  9. Still a few days left of summer vacation (with little else to do :music_whistling:), I worked my way down the list of the current Button Bind - Requests. The following lua code should take care of most (if not all) of the items in the current list. For completeness, I also included the Emergency Wing Sweep Handle code from the previous post. There may be other ways to categorize some of the buttons (e.g. Master Test Selector Switch and Altimeter Mode Switch), but I leave that up to HB. :smilewink: If I have more time I might have a look at the requested +/- buttons and axis bindings, but that will probably mean changes made to clickabledata.lua (of which I have no previous experience). By the way, you can remove Flaps and DLC axes from the Axis Bind list (as already suggested by draconus), as these have been implemented by HB in latest beta. {down = device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id = devices.WINGSWEEP, value_down = -1, name=_('Emergency Wing Sweep Handle PUSH IN'), category=_('Throttle')}, {down = device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id = devices.WINGSWEEP, value_down = 1, name=_('Emergency Wing Sweep Handle PULL OUT'), category=_('Throttle')}, {down = device_commands.WINGSWEEP_EmergencyLeverExtended, up = device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id = devices.WINGSWEEP, value_down = -1, value_up = 1, name=_('Emergency Wing Sweep Handle PUSH IN/PULL OUT (Toggle)'), category=_('Throttle')}, {down = device_commands.ALTIMETER_Mode, up = device_commands.ALTIMETER_Mode, cockpit_device_id = devices.BAROALTIMETER, value_down = 1, value_up = 0, name = _('Altimeter Mode Switch RESET'), category = _('Altimeter')}, {down = device_commands.ALTIMETER_Mode, up = device_commands.ALTIMETER_Mode, cockpit_device_id = devices.BAROALTIMETER, value_down = -1, value_up = 0, name = _('Altimeter Mode Switch STDBY'), category = _('Altimeter')}, {down = device_commands.CANOPY_Open, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Canopy OPEN'), category = _('Cockpit Mechanics')}, {down = device_commands.CANOPY_Open, cockpit_device_id = devices.COCKPITMECHANICS, value_down = -1, name = _('Canopy CLOSE'), category = _('Cockpit Mechanics')}, {down = device_commands.EJECT_ArmPilot, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Ejection Seat ARM'), category = _('Cockpit Mechanics')}, {down = device_commands.EJECT_ArmPilot, cockpit_device_id = devices.COCKPITMECHANICS, value_down = -1, name = _('Ejection Seat SAFE'), category = _('Cockpit Mechanics')}, {down = device_commands.HYD_EMERG_FLT_Switch, cockpit_device_id = devices.HYDRAULICS, value_down = -1, name = _('Hydraulic Emergency Flight Control Switch AUTO(LOW)'), category = { _('Right Sidewall')}}, {down = device_commands.HYD_EMERG_FLT_Switch, cockpit_device_id = devices.HYDRAULICS, value_down = 0, name = _('Hydraulic Emergency Flight Control Switch LOW'), category = { _('Right Sidewall')}}, {down = device_commands.HYD_EMERG_FLT_Switch, cockpit_device_id = devices.HYDRAULICS, value_down = 1, name = _('Hydraulic Emergency Flight Control Switch HIGH'), category = { _('Right Sidewall')}}, {down = device_commands.HYD_EMERG_FLT_Switch, up = device_commands.HYD_EMERG_FLT_Switch, value_down = 1, value_up = 0, cockpit_device_id = devices.HYDRAULICS, name = _('Hydraulic Emergency Flight Control Switch HIGH else LOW'), category = _('Right Sidewall')}, {down = device_commands.HYD_EMERG_FLT_Switch, up = device_commands.HYD_EMERG_FLT_Switch, value_down = -1, value_up = 0, cockpit_device_id = devices.HYDRAULICS, name = _('Hydraulic Emergency Flight Control Switch AUTO(LOW) else LOW'), category = _('Right Sidewall')}, {down = device_commands.HYD_EMERG_FLT_SwitchCover, cockpit_device_id = devices.HYDRAULICS, value_down = 0, name = _('Hydraulic Emergency Flight Control Switch Cover CLOSE'), category = { _('Right Sidewall')}}, {down = device_commands.HYD_EMERG_FLT_SwitchCover, cockpit_device_id = devices.HYDRAULICS, value_down = 1, name = _('Hydraulic Emergency Flight Control Switch Cover OPEN'), category = { _('Right Sidewall')}}, {down = device_commands.HYD_EMERG_FLT_SwitchCover, up = device_commands.HYD_EMERG_FLT_SwitchCover, value_down = 1, value_up = 0, cockpit_device_id = devices.HYDRAULICS, name = _('Hydraulic Emergency Flight Control Switch Cover OPEN else CLOSE'), category = _('Right Sidewall')}, {down = device_commands.HYD_HandPump, cockpit_device_id = devices.HYDRAULICS, value_down = 1, name = _('Hydraulic Hand Pump UP'), category = _('Cockpit Mechanics')}, {down = device_commands.HYD_HandPump, cockpit_device_id = devices.HYDRAULICS, value_down = 0, name = _('Hydraulic Hand Pump DOWN'), category = _('Cockpit Mechanics')}, {down = device_commands.HYD_HandPump, up = device_commands.HYD_HandPump, cockpit_device_id = devices.HYDRAULICS, value_down = 0, value_up = 1, name = _('Hydraulic Hand Pump UP/DOWN (toggle)'), category = _('Cockpit Mechanics')}, {down = device_commands.THROTTLE_Left_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_down = 1, name = _('Left Engine CUTOFF'), category = _('Throttle')}, {down = device_commands.THROTTLE_Left_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_down = 0, name = _('Left Engine IDLE'), category = _('Throttle')}, {down = device_commands.THROTTLE_Left_Throttle_CutOff, up = device_commands.THROTTLE_Left_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_up = 0, value_down = 1, name = _('Left Engine CUTOFF else IDLE'), category = _('Throttle')}, {down = device_commands.THROTTLE_Right_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_down = 1, name = _('Right Engine CUTOFF'), category = _('Throttle')}, {down = device_commands.THROTTLE_Right_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_down = 0, name = _('Right Engine IDLE'), category = _('Throttle')}, {down = device_commands.THROTTLE_Right_Throttle_CutOff, up = device_commands.THROTTLE_Right_Throttle_CutOff, cockpit_device_id = devices.ENGINE, value_up = 0, value_down = 1, name = _('Right Engine CUTOFF else IDLE'), category = _('Throttle')}, {down = device_commands.FLAPS_Lever, up=device_commands.FLAPS_Lever, cockpit_device_id = devices.FLAPS, value_down = 1, value_up = 0, name = _('Flaps UP else DOWN'), category = _('Flight Control')}, {down = device_commands.FLAPS_Lever, up = device_commands.FLAPS_Lever, cockpit_device_id = devices.FLAPS, value_down = 2, value_up = -1, name = _('Emergency Flaps UP else DOWN'), category = _('Flight Control')}, {down = device_commands.RamAir, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Ram Air INCR'), category = _('Cockpit Mechanics')}, {down = device_commands.RamAir, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 0, name = _('Ram Air DECR'), category = _('Cockpit Mechanics')}, {down = device_commands.RamAir, up=device_commands.RamAir, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, value_up = 0, name = _('Ram Air INCR else DECR'), category = _('Cockpit Mechanics')}, {down = device_commands.AirSourceRam, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Air Source RAM'), category = _('Cockpit Mechanics')}, {down = device_commands.AirSourceLEng, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Air Source L ENG'), category = _('Cockpit Mechanics')}, {down = device_commands.AirSourceREng, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Air Source R ENG'), category = _('Cockpit Mechanics')}, {down = device_commands.AirSourceBoth, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Air Source BOTH ENG'), category = _('Cockpit Mechanics')}, {down = device_commands.AirSourceOff, cockpit_device_id = devices.COCKPITMECHANICS, value_down = 1, name = _('Air Source OFF'), category = _('Cockpit Mechanics')}, {down = device_commands.BIT_SelectorPush, cockpit_device_id = devices.BITPANEL, value_down = 0, name = _('Master Test Selector PUSH IN'), category = _('Master Test')}, {down = device_commands.BIT_SelectorPush, cockpit_device_id = devices.BITPANEL, value_down = 1, name = _('Master Test Selector PULL OUT'), category = _('Master Test')}, {down = device_commands.BIT_SelectorPush, up = device_commands.BIT_SelectorPush, cockpit_device_id = devices.BITPANEL, value_down = 1, value_up = 0, name = _('Master Test Selector PULL OUT else PUSH IN'), category = _('Master Test')},
  10. Emergency Sweep Handle Being a little impatient I played around with the definitions for the Emergency Sweep Handle inside clickabledata.lua and came up with a solution for the requested PUSH-IN/PULL-OUT/TOGGLE keybinding, see first three lines in the LUA code snippet below. These should be added to the default.lua files as usual and can perhaps be added to the master list in the first post (for easy reference to Heatblur if they wish to implement it). By the way: I looked through the first post and saw that all current code suggestions has been implemented by HB, so you may wish to remove these (and start fresh with suggestions as per below). {down=device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id=devices.WINGSWEEP, value_down=-1.0, name=_('Emergency Wing Sweep Handle (Push In)'), category=_('Throttle')}, {down=device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id=devices.WINGSWEEP, value_down=1.0, name=_('Emergency Wing Sweep Handle (Pull Out)'), category=_('Throttle')}, {down=device_commands.WINGSWEEP_EmergencyLeverExtended, up=device_commands.WINGSWEEP_EmergencyLeverExtended, cockpit_device_id=devices.WINGSWEEP, value_down=-1.0, value_up=1.0, name=_('Emergency Wing Sweep Handle (Toggle)'), category=_('Throttle')}, EDIT: Please note that the emergency sweep handle needs to be moved forward in order for it to be pressable. A dedicated axis binding and/or incremental +/- buttons would be nice for this functionality. An interim solution is to add the command WINGSWEEP_EmergencySweepLever as a customized axis, as suggested by Raffson and others (see earlier posts in thread).
  11. Just update DCS to new Open Beta version (2.5.5.33184) and the hotfix will be included.
  12. Can confirm that the EP-13 is up and running again. Thank you RagnarDa! Helgen är räddad. :smilewink:
  13. Is the list of keybindings/bugs of this thread actually being maintained or have really no more bindings been added since 27th of March (which seems to be the latest update of the first post of this thread)?
  14. You can find them in the default.lua file inside Input/Keyboard folder, from commented row "-- FunkyFranks assignments" and onwards. Most of them are 2- and 3-position switches. Useful of course, but would personally liked to have seen more push (single action) and toggle buttons and rotary switches added. :(
  15. Thanks Fubar! I'll do that in the meantime, but would prefer if HB could copy/paste this into their default.lua so I don't have to do it every time there's an update. :noexpression:
  16. Another missing keybinding found (and not already added to the master list) is "Radar Altimeter Control Knob CW/CCW".
  17. I'd like to add "Crank Engine OFF" to the missing keybinding list. Perhaps not often used, but specifically mentioned during first training mission ("Basics - Pilot Cold Start") as well as in the manual in the engine startup procedure (Step 13).
  18. Have you checked that you are actually armed with RB75? Try an instant action mission like "Tank busting" and see if you experience the same problem...I just did and saw no issues myself.
  19. Have you tried zooming in your FOV? Although ”semi-cheating”, always found that extra useful for improving accuracy with the Rb-05.
  20. Bug added to thread https://forums.eagle.ru/showthread.php?t=236791.
  21. Inspired by a similar thread for F14B (https://forums.eagle.ru/showthread.php?t=235229), I thought it would be a good idea to collect all missing/requested keybindings for AJS-37 Viggen for all of us with keybinding needs exceeding those of mouse-clicking pilots. The idea is to have a working list of missing/bugged keybindings, where the list will be edited as suggestions are added and implemented. Keybinding/bug list applies to DCS version 2.5.5.38756 (Open Beta). Button binds missing Position lights: ON + Togglebutton (ON/OFF) Emergency lights: Togglebutton (ON/OFF) RB-04/RB-15/BK release mode switch: GRUPP + ENKEL + Togglebutton (GRUPP/ENKEL) Weapon Release mode switch (Fallsattomkopplare): SERIE + IMPULS + Togglebutton (SERIE/IMPULS) Weapon Interval Selector Mode knob (Siktningsvaljare): Rotary switch (CW + CCW) Countermeasure KB Mode: Rotary switches (CW + CCW) Countermeasure U22 Jammer Band: Rotary switches (CW + CCW) Countermeasure Chaff/Flares Selector: Rotary switches (CW + CCW) HUD shift: UP + DOWN Oxygen lever: UP + DOWN Panel lights: Rotary switches (CW + CCW) Flood lights: Rotary switches (CW + CCW) Instrument lights: Rotary switches (CW + CCW) High-pressure fuel valve (Cut off) Bugs "Aterstart (Restart) Switch On/Off" use different command definitions in keyboard.lua, joystick.lua and mouse.lua (3401 or 3004?). Default key assigments duplicated for 'Cycle Ground Crew Regroup Selection' and 'Master Volume / Sidewinder Tone Up' (both have combos = {{key = "R", reformers = {"LAlt","LCtrl"}}}) Default key assignments duplicated for Kneeboard controls (see discussion and possible solution in https://forums.eagle.ru/showthread.php?t=250653) Oxygen lever (presumably meant as a togglebutton) found under 'Misc' only toggles UP Taxi/landing lights switch (togglebutton) doesn’t produce anything Anti-collision lights switch (togglebutton) only flips to OFF position in cockpit, but toggles lights in external view Formation lights switch (togglebutton) only flips to OFF position in cockpit, but toggles lights in external view Navigation lights switch (togglebutton) only flips to HALV position in cockpit, but toggles lights in external view Emergency lights has no function? Suggested renaming of “HUD shift to lower position” to “HUD shift” (as it seems to be a togglebutton) No sound when using TILS rotary switches (only when mouse clicked) Hope this list can be helpful to HB in reaching the full potential of the great AJS-37 Viggen DCS module! Additional suggestions are requested and will be added in the thread.:helpsmilie: As a potential help for HB in implementation and for the impatient ones (like me), here is a list of some of the missing keybinds (more will be added as they are suggested and validated). These were added from the clickabledata.lua file found under Cockpit/scripts subdirectory. These can be added to lua configuration files for the AJS37 module. {down = 3306, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, name = _('Weapon Release Mode - Impuls'), category = _('Weapons')}, {down = 3306, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 0, name = _('Weapon Release Mode - Serie'), category = _('Weapons')}, {down = 3307, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 1, name = _('RB-04/RB-15/BK90 Release Mode - Enkel'), category = _('Weapons')}, {down = 3307, cockpit_device_id = devices.WEAPON_SYSTEM, value_down = 0, name = _('RB-04/RB-15/BK90 Release Mode - Grupp'), category = _('Weapons')}, {down = 3006, cockpit_device_id = devices.LIGHTS, value_down = 1, name =_('Panel Lights ON'), category = _('Lights')}, {down = 3006, cockpit_device_id = devices.LIGHTS, value_down = -1, name =_('Panel Lights OFF'), category = _('Lights')}, {down = 3007, cockpit_device_id = devices.LIGHTS, value_down = 1, name =_('Flood Lights ON'), category = _('Lights')}, {down = 3007, cockpit_device_id = devices.LIGHTS, value_down = -1, name =_('Flood Lights OFF'), category = _('Lights')}, {down = 3008, cockpit_device_id = devices.LIGHTS, value_down = 1, name =_('Instrument Lights ON'), category = _('Lights')}, {down = 3008, cockpit_device_id = devices.LIGHTS, value_down = -1, name =_('Instrument Lights OFF'), category = _('Lights')}, {down = 3004, cockpit_device_id = devices.ENGINEPANEL, value_down = 1.0, name = "High-pressure fuel valve (Cut off)", category = "Motor"},
  22. Missing keybinding(s): Canopy Open Canopy Close Ejection Seat Arm Ejection Seat Safe Left Engine Idle Right Engine Idle Bug(s): AOA Indexer brightness doesn't work when keybound Related question(s): What's purpose of the "else"-bindings? How do they work?
  23. For completeness in the thread, the TARGET code solution mentioned by SsgtHolland is (for anyone else looking): // Flight Control: Flaps MapKey(&Throttle, FLAPD, PULSE + Flaps_down); MapKeyR(&Throttle, FLAPD, PULSE + Flaps_up); MapKey(&Throttle, FLAPU, PULSE + Flaps_up); MapKeyR(&Throttle, FLAPU, PULSE + Flaps_down);
  24. When engaged in ATT Hold or ALT Hold I use "SAS mode SPAK flight stabiliser" key to return to SPAK mode (but a mouse click on cockpit button for SPAK mode yields same effect). This switches off all lights and disengages autopilot completely. I then need to engage SPAK mode again to recover autopilot. I get the same effect both on ground and airborne. Mind you, this only occurs ONCE after a cold start. When corrected as described above it then works as expected (as when starting airborne).
  25. I have been looking through the forums for previous reports of this bug and am a little surprised it not been reported yet. It could perhaps be considered a minor bug, in comparison to others, but is still slightly annoying in my opinion (and probably easily fixed). From a cold start autopilot is automatically engaged to SPAK mode (after engine is started), at least visually in cockpit as the light becomes lit up. However, when autopilot mode is changed to another mode (e.g. ATT Hold or ALT Hold) and then back to SPAK mode the autopilot is suddenly disengaged (and all autopilot mode lights are switched off). To make SPAK (or any other autopilot mode) active again, it must then be switched ON. This seems counterintuitive to me. Please also note, that after this initial problem the autopilot switching works just fine and stays on until told to switch off. This make me think that some initial setting may be incorrect. Thank you otherwise for a wonderful model of the Viggen! :thumbup: Best regards, David. Version: DCS World 2.5.3.23225 - Model: AJS Viggen - Controller: Thrustmaster Warthog
×
×
  • Create New...