Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. #MaxHotkeysPerInterval 2000
  6. #IfWinActive StreetFighterV
  7.  
  8. Numpad7::g ; LP
  9. Numpad8::h ; MP
  10. Numpad9::j ; HP
  11.  
  12. NumpadHome::g ; LP
  13. NumpadUp::h ; MP
  14. NumpadPgUp::j ; HP
  15.  
  16. NumpadDiv::k ; LP+MP+HP
  17. NumpadMult::k ; LP+MP+HP
  18. NumpadSub::k ; LP+MP+HP
  19.  
  20. Numpad4::b ; LK
  21. Numpad5::n ; MK
  22. Numpad6::m ; HK
  23.  
  24. NumpadLeft::b ; LK
  25. NumpadClear::n ; MK
  26. NumpadRight::m ; HK
  27.  
  28. NumpadAdd::, ; LK+MK+HK
  29.  
  30. Space:: ; Throw
  31. SendInput {g down}{b down}
  32. KeyWait, Space
  33. SendInput {g up}{b up}
  34. Return
  35.  
  36. q:: ; V-Skill
  37. SendInput {h down}{n down}
  38. KeyWait, q
  39. SendInput {h up}{n up}
  40. Return
  41.  
  42. NumpadSub:: ; V-Skill
  43. SendInput {h down}{n down}
  44. KeyWait, NumpadSub
  45. SendInput {h up}{n up}
  46. Return
  47.  
  48. e:: ; V-Trigger
  49. SendInput {j down}{m down}
  50. KeyWait, e
  51. SendInput {j up}{m up}
  52. Return
  53.  
  54. NumLock:: ; V-Trigger
  55. SendInput {j down}{m down}
  56. KeyWait, NumLock
  57. SendInput {j up}{m up}
  58. Return
  59.  
  60. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement