Advertisement
Guest User

Dart buff glitch DS3

a guest
Jan 24th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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. #IfWinActive ahk_class FDPclass
  6. #SingleInstance Force
  7.  
  8.  
  9. `::
  10. {
  11.    
  12.     Send {p down}   ; p = R1 attack
  13.     Sleep, 20
  14.     Send {p up}
  15.    
  16.     Sleep, 150
  17.  
  18.     Send {l down}  ;  L = switch spell
  19.     Sleep, 50
  20.     Send {l up}
  21.  
  22.     Sleep, 150
  23.    
  24.     Send {o down}  ;  O = lock on
  25.     Sleep, 50
  26.     Send {o up}
  27.    
  28.     Sleep, 150
  29.    
  30.     Send {p down}
  31.     Sleep, 50
  32.     Send {p up}
  33.  
  34.     Send {p down}
  35.     Sleep, 20
  36.     Send {p up}
  37.  
  38.     return
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement