Page 1 of 1

Macro tied to certain profile

Posted: Tue Jun 16, 2015 7:08 am
by CrendKing
I wonder how to trigger a macro only when certain profile is active. For example, in the recoil macro from http://gimx.fr/wiki/index.php?title=Macros, the number 25 is good for profile 2 (ADS), but way too big for profile 1 (hip fire). How to define that KEYDOWN o has MAXIS 1 10 for profile 1 and MAXIS 1 25 for profile 2?

Thanks!

Re: Macro tied to certain profile

Posted: Tue Jun 16, 2015 8:54 am
by Matlo
Macro for profile 1:

Code: Select all

MACRO MBUTTONDOWN BUTTON_LEFT
TRIGGER MBUTTONUP BUTTON_RIGHT
INIT ON
TOGGLE YES
#macro content
Macro for profile 2:

Code: Select all

MACRO MBUTTONDOWN BUTTON_LEFT
TRIGGER MBUTTONDOWN BUTTON_RIGHT
INIT OFF
TOGGLE YES
#macro content

Re: Macro tied to certain profile

Posted: Tue Jun 16, 2015 11:51 am
by CrendKing
I think all these should be TOGGLE NO, because such macro should remain active as long as the right mouse button is down/up.

Thank you!