Advertisement
yuzdaboyz

Star Citizen AHK - Request Landing

Dec 21st, 2021
1,419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.62 KB | None | 0 0
  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.  
  6. #IfWinActive ahk_exe StarCitizen.exe
  7. +1::
  8. Send,,{F11}
  9. SoundPlay, e:\virpil\sound\Requesting landing pad.mp3
  10. Sleep 3500
  11. MouseMove,523,333
  12. Sleep 1000
  13. MouseMove,523,333
  14. Sleep 1000
  15. MouseClick,left
  16. ;Sleep 3000
  17. MouseMove,800,520,5
  18. Sleep 1000
  19. MouseClick,left
  20. Sleep 4000
  21. Send,,{F11}
  22. return
  23. #IfWinActive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement