Jump to content

Some key combos don't work


Mar

Recommended Posts

I have found (edit:) five key combinations that are ignored by the game.

 

Lctrl+Lshift X

Lctrl+Lshift R

Lctrl+Lshift+Lalt S

Lwin X

Lwin G

 

do not work in my DCS open beta.

 

I don't have any other programs running that would intercept those combos. The exception is windows itself which uses the Lwin combos, but I'd have thought DCS would take precedence.

 

Can anyone else use these? Am I missing something?


Edited by Mar

From the shadows of war's past a demon of the air rises from the grave.

 

"Onward to the land of kings—via the sky of aces!"

Link to comment
Share on other sites

I was also encountering this issue with the F-18C in combination with TARGET and Voice Attack.

Had to change the bindings also Ctrl+X and Ctrl+Lalt+X caused problems they sometimes recognized like the same key.

 

Forcing me to rebind multiple controls just to fix issue pretty annoying and lot of work.

But after you rebind it to a different key it should work like in my case.


Edited by dailey123
Link to comment
Share on other sites

in which module (aircraft)?

 

All of them.

 

I was also encountering this issue with the F-18C in combination with TARGET and Voice Attack.

Had to change the bindings also Ctrl+X and Ctrl+Lalt+X caused problems they sometimes recognized like the same key.

 

Forcing me to rebind multiple controls just to fix issue pretty annoying and lot of work.

But after you rebind it to a different key it should work like in my case.

 

Like I said, I don't have anything else running that would intercept keys.

 

These combos do work in other games I play. In the controls menu in DCS, pressing these combos will jump to what they're assigned to. But they do nothing in the game.

 

Rebinding is not an option, I have too much else bound already.

From the shadows of war's past a demon of the air rises from the grave.

 

"Onward to the land of kings—via the sky of aces!"

Link to comment
Share on other sites

I was also encountering this issue with the F-18C in combination with TARGET and Voice Attack.

 

Not entirely the same problem (and no Target (but Foxy) and no voice attack).

Doesn't work with keyboard either.

 

https://forums.eagle.ru/showthread.php?t=259189

Win11 Pro 64-bit, Ryzen 5800X3D, Corsair H115i, Gigabyte X570S UD, EVGA 3080Ti XC3 Ultra 12GB, 64 GB DDR4 G.Skill 3600. Monitors: LG 27GL850-B27 2560x1440 + Samsung SyncMaster 2443 1920x1200, HOTAS: Warthog with Virpil WarBRD base, MFG Crosswind combat pedals, TrackIR4, Rift-S.

Personal Wish List: A6 Intruder, Vietnam theater, decent ATC module, better VR performance!

Link to comment
Share on other sites

Can anyone just quickly try binding these to something to see if they work for you?

From the shadows of war's past a demon of the air rises from the grave.

 

"Onward to the land of kings—via the sky of aces!"

Link to comment
Share on other sites

Tip: If you have saved SnapViews in the F/A-18, rename (or delete) the SnapViews.lua file in C:\Users\xxxxx\Saved Games\DCS.DCS_World_Open_Beta\Config\View

Win11 Pro 64-bit, Ryzen 5800X3D, Corsair H115i, Gigabyte X570S UD, EVGA 3080Ti XC3 Ultra 12GB, 64 GB DDR4 G.Skill 3600. Monitors: LG 27GL850-B27 2560x1440 + Samsung SyncMaster 2443 1920x1200, HOTAS: Warthog with Virpil WarBRD base, MFG Crosswind combat pedals, TrackIR4, Rift-S.

Personal Wish List: A6 Intruder, Vietnam theater, decent ATC module, better VR performance!

Link to comment
Share on other sites

Tip: If you have saved SnapViews in the F/A-18, rename (or delete) the SnapViews.lua file in C:\Users\xxxxx\Saved Games\DCS.DCS_World_Open_Beta\Config\View

 

 

Did not solve this problem. :(

 

Thanks tho.

From the shadows of war's past a demon of the air rises from the grave.

 

"Onward to the land of kings—via the sky of aces!"

Link to comment
Share on other sites

I managed to put together a temporary workaround after four hours of screwing with it.

 

Using AutoHotkey, I can translate Lcontrol+Lshift+Lalt S to Rctrl+Rshift+Ralt S (this does work in the game), and so on, with this script:

 

edit: better version

; Lctrl+Lshift+Lalt S
<^<+<!s::
   Send {blind}{lctrl up}{lshift up}{lalt up}{rctrl down}{rshift down}{ralt down}{s down}
   KeyWait s
   Send {s up}{rctrl up}{rshift up}{ralt up}
   if (getkeystate("lctrl","P"))
   {
       Send {lctrl down}
   }
   if (getkeystate("lshift","P"))
   {
       Send {lshift down}
   }
   if (getkeystate("lalt","P"))
   {
       Send {lalt down}
   }
return

; Lctrl+Lshift X
<^<+x::
   Send {blind}{lctrl up}{lshift up}{rctrl down}{rshift down}{x down}
   KeyWait x
   Send {x up}
   Send {rctrl up}{rshift up}
   if (getkeystate("lctrl","P"))
   {
       Send {lctrl down}
   }
   if (getkeystate("lshift","P"))
   {
       Send {lshift down}
   }
return

; Lctrl+Lshift R
<^<+r::
   Send {blind}{lctrl up}{lshift up}{rctrl down}{rshift down}{r down}
   KeyWait r
   Send {r up}{rctrl up}{rshift up}
   if (getkeystate("lctrl","P"))
   {
       Send {lctrl down}
   }
   if (getkeystate("lshift","P"))
   {
       Send {lshift down}
   }
return

But I still have yet to hear whether or not this problem only affects me.


Edited by Mar

From the shadows of war's past a demon of the air rises from the grave.

 

"Onward to the land of kings—via the sky of aces!"

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...