FeelGood Posted September 29, 2018 Share Posted September 29, 2018 Hi, my keyboard is K70 RGB Rapidfire and I installed the last icue software. I'd like to use macros. I need help to configure this macro (COD4): crouch with LCTRL, and to lie down if I press LCTRL a little more longer. In game, Crouch is C and lie down is LCTRL. Of course in game, impossible to configure LCTRL for 2 differents actions. Many thanks in advance for your help. Link to comment Share on other sites More sharing options...
hastegag Posted September 29, 2018 Share Posted September 29, 2018 Autohotkey would be able to do this for you. The following is not what you described but similar: $LCtrl:: if (A_TimeSincePriorHotkey < 300 && (A_PriorHotkey = A_ThisHotkey)) { SendInput {LCtrl} } else { SendInput c } return and frankly there are a couple better ways to do it. I would look into making LCtrl a prefix https://autohotkey.com/docs/Hotkeys.htm as described there and then maybe you could do the above cleaner. It still may not be your best option and whether COD4 or any other game allows virtual key presses or not (from cue or from anywhere) your mileage may vary. Link to comment Share on other sites More sharing options...
FeelGood Posted September 30, 2018 Author Share Posted September 30, 2018 Hi Many thanks for the quick reply. I'll give it a try and i'll tell you if it's work. Really appreciate your help. Link to comment Share on other sites More sharing options...
Recommended Posts