Advertisement
Bsanist

AutoHotKey: DiRT Rally / DiRT Rally 2.0 One Key Restart

Jul 1st, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #IfWinActive ahk_exe drt.exe
  2.    ; Restart
  3.    Joy12::
  4.       SetKeyDelay, 40, 40
  5.       Send, {Escape}
  6.       Send, {Down}
  7.       Send, {Enter}
  8.       Sleep, 800
  9.       Send, {Enter}
  10.       return
  11. #IfWinActive
  12.  
  13. #IfWinActive ahk_exe dirtrally2.exe
  14.    ; [short press] Restart
  15.    ; [long press] Return To Service Area
  16.    Joy12::
  17.       KeyWait, Joy12, T0.5
  18.       longPress := ErrorLevel
  19.      
  20.       SetKeyDelay, 40, 40
  21.       Send, {Escape}
  22.       Send, {Down}
  23.      
  24.       if (longPress) {
  25.          Send, {Down}
  26.       }
  27.      
  28.       Send, {Enter}
  29.       Send, {Up}
  30.       Send, {Enter}
  31.      
  32.       CoordMode, Mouse, Screen
  33.       MouseMove, 0, 0
  34.       return
  35. #IfWinActive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement