Advertisement
Guest User

Untitled

a guest
Apr 9th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoTrayIcon
  2. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  3. ; #Warn  ; Enable warnings to assist with detecting common errors.
  4. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  5. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  6. SetTitleMatchMode, 2
  7.  
  8. Run, ".\launcher.exe"
  9. Overclock_On:
  10. {
  11. Send {LAlt down}
  12.     Sleep, 50
  13.     Send {F10}
  14.     Sleep, 50
  15.     Send {LAlt up}
  16. }
  17. Process, WaitClose, ironsight.exe
  18. Overclock_Off:
  19. {
  20.     Send {LAlt down}
  21.     Sleep, 50
  22.     Send {F10}
  23.     Sleep, 50
  24.     Send {LAlt up}
  25. }
  26. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement