Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #NoEnv
- ;SendMode Input
- SetTitleMatchMode, 3
- #InstallKeybdHook
- #if winactive("Warframe")
- XButton2:: ;HOLD ALONG WITH FORWARD DIRECTION TO SPIN ATTACK
- {
- While GetKeyState("XButton2", "P")
- {
- Send {Ctrl down}
- Sleep 30
- Send {e down}
- Sleep 30
- Send {e up}
- Send {Ctrl up}
- Sleep 140
- }
- Return
- }
- spamCast = 0
- Numpad6:: ; SPAMS AN ABILITY (TOGGLE)
- {
- spamCast := !spamCast
- While spamCast
- {
- Send {2}
- Sleep 50
- }
- return
- }
- NumpadDiv:: ;TRANSMUTE MODS
- {
- MouseGetPos, mx, my ; Saves inital position, unly usable if you have a search open
- Click ; Click current mouse position
- Sleep 180
- Click, 1075 695 ; selecting ammounts
- Sleep 150
- Click, 1075 695 ; selecting ammounts
- Sleep 150
- Click, 1075 695 ; selecting ammounts
- Sleep 150
- Click, 875 735 ; CONFIRM
- Sleep 200
- Click, 690 360 ; TRANSMUTE
- Sleep 150
- Click, 855 635 ; YES
- MouseMove, mx, my ; return to position
- }
- ~RButton & LButton:: ; WHILE CAPS LOCK IS ON, WHEN AIMING HOLD MOUSE TO AUTOFIRE (USED FOR NON AUTO WEAPONS)
- {
- While GetKeyState("LButton","P") == 1 && GetKeyState("RButton","P") == 1 && GetKeyState("CapsLock","T") == 1
- {
- send {Numpad9}
- Sleep, 10
- }
- return
- }
- ;https://www.autohotkey.com/docs/Hotkeys.htm (info on prefix modifiers)
- ;https://autohotkey.com/board/topic/64576-the-definitive-autofire-thread/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement