Page 1 of 1

Hold button macro

Posted: Wed Apr 22, 2020 10:01 pm
by SLAyER_0307
Guys I tried to make a macro for quick prone for call of duty.
I use "C" to crouch and I want to press LCTRL to go fully prone without holding the button. Heres what I writed tell me whats wrong;

CODmw.xml/CODmw.txt

MACRO JBUTTONDOWN c
KEYDOWN LCTRL
DELAY 1
KEYUP LCTRL

Re: Hold button macro

Posted: Sun Apr 26, 2020 9:24 am
by GoDlike
I suppose the long press should make the character prone?

Try

MACRO KEYDOWN c
KEYDOWN LCTRL
DELAY 1
KEYUP LCTRL

Re: Hold button macro

Posted: Tue Apr 28, 2020 6:26 pm
by SLAyER_0307
thank you I will try