Skip to main content Help with AHK slide attack macro : r/Warframe

Get the Reddit app

Scan this QR code to download the app now
Or check it out in the app stores
r/Warframe icon
r/Warframe icon
Go to Warframe

Help with AHK slide attack macro

Question/Request

Hello, I have some slide attack script that works correctly, but when I use it, shortly after using the slide attack it uses a normal attack, instead of proceeding with another slide attack, sometimes it works as it should, but most Sometimes it does what I said above, I tried other scripts and the same problem always happens, so I suspect it's my default key configuration, do I have to change something?

Script used:

IfWinActive WARFRAME

*Caps Lock:: Send, {Control Down} Send, {e} Send, {Control Up} Sleep, 400 Return

IfWinActive

$ numpad0 :: pause $ numpad1 :: exitapp


if! ErrorLevel = 0

{ and:: Send, {Control Down} Sleep, 20 Send, and Sleep, 20 Send {Control Up} Sleep, 20 return }

End :: Pause $ numpad1 :: exitapp


Caps Lock:: Loop, {

Send {w down} {control down} {e} Sleep 350 Send {w up} {control up}

}

$ 1 :: Pause $ numpad1 :: exitapp

Archived post. New comments cannot be posted and votes cannot be cast.
PlayStation®5 Pro
Thumbnail image: PlayStation®5 Pro
Sort by:
Best
Open comment sort options

adjust the sleep times for your attack speed I use 250 for atterax berserker on volt and 500 for atterax berserker on regular frames

#IfWinActive WARFRAME
*q::
Send, {Control Down}
Send, {LButton}
Send, {Control Up}
Sleep, 750
Return
#IfWinActive

Change the "q" in the second line to any key you like. Pressing q activates slide attack once, but only if you have the melee weapon equipped. Holding q repeats the action.


Or alternatively;

MButton::^e

This will make you do a slide attack with quick melee by pressing your middle mouse button while holding a primary or secondary weapon.

#IfWinActive WARFRAME
XButton1::

Send, {Control Down}
Send, {e}
Send, {Control Up}

Sleep, 150
Return    

is what my script looks like. you do have to manually time the slide attacks though, you cant just spam mouse 4 really fast.

I just use Xbutton1::send e and as long as I'm holding w I slide attack when I hit mouse4. Yours is way too complicated just to automate it (which I would imagine is against the TOS anyway)

Edit: You're not letting e back up after it, it's staying pressed down. add an {e up} to the end after ctrl up and i imagine its fixed.

More replies

Do keep in mind the golden rule of;

One button press, one action

Pressing a button once and letting the macro do more than one slide attack without even pressing it again for example is bannable.

More replies