Advertisement
Guest User

My Full Warframe everyday AHK

a guest
Apr 9th, 2021
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv
  2. ;SendMode Input
  3. SetTitleMatchMode, 3
  4. #InstallKeybdHook
  5.  
  6. #if winactive("Warframe")
  7.  
  8.  
  9.  
  10. XButton2:: ;HOLD ALONG WITH FORWARD DIRECTION TO SPIN ATTACK
  11. {
  12.     While GetKeyState("XButton2", "P")
  13.     {
  14.         Send {Ctrl down}
  15.         Sleep 30
  16.         Send {e down}
  17.         Sleep 30
  18.         Send {e up}
  19.         Send {Ctrl up}
  20.         Sleep 140
  21.     }
  22.     Return
  23. }
  24.  
  25. spamCast = 0
  26. Numpad6:: ; SPAMS AN ABILITY (TOGGLE)
  27. {
  28.     spamCast := !spamCast
  29.     While spamCast
  30.     {
  31.         Send {2}
  32.         Sleep 50
  33.     }
  34.     return
  35. }
  36.  
  37. NumpadDiv:: ;TRANSMUTE MODS
  38. {
  39.     MouseGetPos, mx, my ; Saves inital position, unly usable if you have a search open
  40.  
  41.     Click           ; Click current mouse position
  42.     Sleep 180
  43.     Click, 1075 695 ; selecting ammounts
  44.     Sleep 150
  45.     Click, 1075 695 ; selecting ammounts
  46.     Sleep 150
  47.     Click, 1075 695 ; selecting ammounts
  48.     Sleep 150
  49.     Click, 875 735  ; CONFIRM
  50.     Sleep 200
  51.     Click, 690 360  ; TRANSMUTE
  52.     Sleep 150
  53.     Click, 855 635  ; YES
  54.    
  55.     MouseMove, mx, my ; return to position
  56. }
  57.  
  58. ~RButton & LButton:: ; WHILE CAPS LOCK IS ON, WHEN AIMING HOLD MOUSE TO AUTOFIRE (USED FOR NON AUTO WEAPONS)
  59. {
  60.     While GetKeyState("LButton","P") == 1 && GetKeyState("RButton","P") == 1 && GetKeyState("CapsLock","T") == 1
  61.     {
  62.         send {Numpad9}
  63.         Sleep, 10
  64.     }
  65.     return
  66. }
  67. ;https://www.autohotkey.com/docs/Hotkeys.htm (info on prefix modifiers)
  68. ;https://autohotkey.com/board/topic/64576-the-definitive-autofire-thread/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement