#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로 설정되어있으니 바꾸려면 바꿔도 되고
키보드에서 End키가 매크로 강제 종료
마우스 왼쪽 버튼 누르면 일시 정지
그리고 w+e키 누르면 회베 한번 나가고 꾹누르면 계속 나감
XButton1은 자동 회베 부분이라 원하는 버튼으로 바꿔서 쓰셈
땡쿠
오토핫키 깔고 저거 붙여놓으면 매크로 가능함?