#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.

; #Warn  ; Enable warnings to assist with detecting common errors.

SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.

SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

slideAttackActive := false

#IfWinActive WARFRAME

E::

if (not slideAttackActive){

slideAttackActive := true

Send, {q down}

Sleep, 10

Send, e

Sleep, 430

Send, {q up}

slideAttackActive := false

}

Return


XButton1::

toggle:=!toggle

While toggle{

Send, {w Down}

Sleep, 20

Send, {q Down}

Sleep, 10

Send, e

Sleep, 430

Send, {q Up}

}

Return


~LButton::reload

return


END::

exitapp

return



앉기 키를 q로 바꿨음 q 안쓰고있으면 q들 전부 ctrl로 바꾸면 댐


w 누른채로 e 누르면 회베 나감

w 누른채로 e 계속 누르고 있으면 회베 계속 나감


마우스 추가버튼(뒤로가기키) 누르면 회베 계속 나감 w 안눌러도 됨

마우스 좌클릭하면 회베 반복매크로 중지됨


End키 누르면 매크로 즉시종료됨