Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. #EscapeChar \
  2.  
  3. sshield := "`"
  4. sword := "{F11}"
  5. shield := "{F12}"
  6.  
  7. pattack := "XButton2"
  8. pattack1 := "{F6}"
  9. pattack2 := ","
  10.  
  11. whirlwind := "MButton"
  12. whirlwind1 := "{F7}"
  13. whirlwind2 := "."
  14.  
  15. dblow := "+XButton1"
  16. dblow1 := "{F8}"
  17. dblow2 := "/"
  18.  
  19. kback := "+XButton2"
  20. kback1 := "{F9}"
  21. kback2 := ";"
  22.  
  23. Hotkey, IfWinActive, ahk_class SFMainWindow
  24. Hotkey, %sshield%, sslabel
  25. Hotkey, %whirlwind%, wwlabel
  26. Hotkey, %pattack%, patklabel
  27. Hotkey, %dblow%, dblowlabel
  28. Hotkey, %kback%, kbacklabel
  29.  
  30. sslabel:
  31. SendInput %sword%
  32. Sleep 650
  33. SendInput %shield%
  34. Return
  35.  
  36. patklabel:
  37. SendInput %pattack1%
  38. SendInput %pattack2%
  39. Return
  40.  
  41. wwlabel:
  42. SendInput %whirlwind1%
  43. SendInput %whirlwind2%
  44. Return
  45.  
  46. dblowlabel:
  47. SendInput %dblow1%
  48. SendInput %dblow2%
  49. Return
  50.  
  51. kbacklabel:
  52. SendInput %kback1%
  53. SendInput %kback2%
  54. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement