Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. ; pside click macro toggle var
  3. t := false
  4.  
  5.  
  6.  
  7. #IfWinActive, Planetside2 v
  8.  
  9. ; CTRL ALT PGUP - kill process
  10. ^!PgUp::Run taskkill /f /im Planetside2_x64.exe
  11.  
  12. ^WheelUp::Send { ] }
  13. ^WheelDown::Send { [ }
  14.  
  15.  
  16. ; Toggle for pside click macro
  17.  
  18. ^F8:: t := !t
  19.  
  20. ~$LButton::
  21. While (GetKeyState("LButton", "P") && t){
  22. Click
  23. Sleep 30 ; milliseconds
  24. }
  25. return
  26.  
  27. #IfWinActive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement