Advertisement
Guest User

Untitled

a guest
Jul 6th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; for all time dependant actions
  2. ; need tweaking, but is useful
  3.  
  4. ; stuns 1850
  5. ; not stun 1900
  6.  
  7.  
  8. starting := 1880
  9. step := 10
  10. x = %starting%
  11.  
  12.  
  13. Numpad1::
  14.     Send {F5}   ;for fraps
  15.     Sleep 1000
  16.  
  17.     Send G  ;travel
  18.     Click
  19.     Send {Blind}{Shift down}
  20.     Click right ;move back
  21.     Send {Blind}{Shift up}
  22.  
  23.     Sleep x
  24.  
  25.     Send 1,X ; select my lina, and strike
  26.     Click
  27.     Send E  ; hold position
  28.  
  29.     Sleep 8000 ;for fraps
  30.     Send {F5}
  31. return
  32.  
  33.  
  34.  
  35.  
  36. Numpad3::
  37.     Send {Enter} %x% {Enter}
  38. return
  39.  
  40. Numpad2::
  41.     x =  %starting%
  42.     Send {Enter} %x% {Enter}
  43. return
  44.  
  45. Numpad4::
  46.     x -= %step%
  47.     Send {Enter} %x% {Enter}
  48. return
  49.  
  50. Numpad5::
  51.     x += %step%
  52.     Send {Enter} %x% {Enter}
  53. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement