Jump to content
Corsair Community

Problem macro on K70 RGB Rapidfire


FeelGood

Recommended Posts

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

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

×
×
  • Create New...