Page 1 of 1

Macro recoil question

Posted: Thu Aug 29, 2019 3:08 pm
by slowdrums
Hi. I’m testing your macro and I have a small question.

MACRO KEYDOWN o
MAXIS 1 X
KEYDOWN o

MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN o

MACRO MBUTTONUP BUTTON_LEFT
KEYDOWN o

That’s the macro I’m using.

I’m trying to get best results by changing the “X” value. When I try to put there “1” the ant recoil effect is low. But when I use “2” aim is going down. Any idea how to get something between?

Re: Macro recoil question

Posted: Fri Aug 30, 2019 1:25 am
by CMW
You can use decimal variables. For example you could do anything in between like 1.1, 1.2, 1.3 ECT ECT

Re: Macro recoil question

Posted: Fri Aug 30, 2019 2:21 pm
by Matlo
Sadly decimals won't work. Try something like this:

Code: Select all

MACRO KEYDOWN o
MAXIS 1 2
DELAY 4
MAXIS 1 1
DELAY 4
KEYDOWN o

MACRO MBUTTONDOWN BUTTON_LEFT
KEYDOWN o

MACRO MBUTTONUP BUTTON_LEFT
KEYDOWN o
And use axis id 0 for mouse axis x.

Re: Macro recoil question

Posted: Fri Aug 30, 2019 2:33 pm
by CMW
Oh, sorry my bad Malto :)

Re: Macro recoil question

Posted: Fri Aug 30, 2019 8:28 pm
by slowdrums
Thanks. I’ve tried DELAY before. But I was thinking if there is any other method :p. Maybe someone already have pretty good anti recoil / spread macro for BF V?

Re: Macro recoil question

Posted: Sat Aug 31, 2019 10:55 am
by GoDlike
I don't think there's any other method. GIMX does not have access to the game data and it can only depend on values you provide to him.