I cant make this macro pls help ;-;

Ask gaming related questions
tronas1
Posts: 1
Joined: 23 Mar 2023, 03:58

I cant make this macro pls help ;-;

Post by tronas1 » 23 Mar 2023, 11:43

Im playing d2, and theres a new technique called "rocket flying" (I know sounds fun) the only problem is, its extremely (like 1/100) low of a chance to do it without a macro. The tutorial I was watching, he used corsair software which can move the pointer around by pixels, but I cant in razer, so I need to in AHK. Other problem is I suck and after a few hours of trying to brute force it, my timings are seemingly random. Could anyone help? I just need the input of "left click+G+move pointer down by 15 pixels+end". any help is appreciated

User avatar
mikeyww
Posts: 26848
Joined: 09 Sep 2014, 18:38

Re: I cant make this macro pls help ;-;

Post by mikeyww » 23 Mar 2023, 19:32

Welcome to this AutoHotkey forum!

Code: Select all

#Requires AutoHotkey v2.0
F3:: {
 SetKeyDelay , PRESSDURATION := 25
 SendEvent '{LButton}g'
 MouseMove 0, 15,, 'R'
 SendEvent '{End}'
}

Post Reply

Return to “Gaming”