Guest User

Metro Exodus RH Saving (Slightly increased delays)

a guest
Jun 4th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #SingleInstance Force
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4.  
  5. #IfWinActive ahk_exe MetroExodus.exe
  6.     SC15B::/        ; LWin => /
  7.  
  8.     ; Save & Load Slots
  9.     F2::
  10.         SendInput {F1}
  11.         sleep, 330
  12.         SendInput gamesave custom_save1{enter}
  13.         sleep, 330
  14.         SendInput {F1}
  15.     return
  16.  
  17.     ^F2::
  18.         SendInput {F1}
  19.         sleep, 330
  20.         SendInput gameload custom_save1{enter}
  21.     return
  22.  
  23.     F3::
  24.         SendInput {F1}
  25.         sleep, 330
  26.         SendInput gamesave custom_save2{enter}
  27.         sleep, 330
  28.         SendInput {F1}
  29.     return
  30.  
  31.     ^F3::
  32.         SendInput {F1}
  33.         sleep, 330
  34.         SendInput gameload custom_save2{enter}
  35.     return
  36.  
  37.     F4::
  38.         SendInput {F1}
  39.         sleep, 330
  40.         SendInput gamesave custom_save3{enter}
  41.         sleep, 330
  42.         SendInput {F1}
  43.     return
  44.  
  45.     ^F4::
  46.         SendInput {F1}
  47.         sleep, 330
  48.         SendInput gameload custom_save3{enter}
  49.     return
  50.  
  51.     ; Quicksave
  52.     F5::
  53.         SendInput {F1}
  54.         sleep, 330
  55.         SendInput gamesave quick_save{enter}
  56.         sleep, 330
  57.         SendInput {F1}
  58.     return
  59.  
  60.     ; Checkpoint Auto Save
  61.     F6::
  62.         SendInput {F1}
  63.         sleep, 330
  64.         SendInput gamesave{enter}
  65.         sleep, 330
  66.         SendInput {F1}
  67.     return
  68.  
  69.     ; "Autoexec"
  70.     F12::
  71.         SendInput {F1}
  72.         sleep, 330
  73.         SendInput r_foliage_hemi_ao 0{enter}
  74.         sleep, 330
  75.         SendInput r_foliage_new_ao 0{enter}
  76.         sleep, 330
  77.         SendInput {F1}
  78.     return
  79.  
  80.     ; Subtitle Toggle
  81.     F10::
  82.         SendInput {F1}
  83.         sleep, 330
  84.         SendInput g_subtitles_show 0{enter}
  85.         sleep, 330
  86.         SendInput {F1}
  87.     return
  88.  
  89.     F11::
  90.         SendInput {F1}
  91.         sleep, 330
  92.         SendInput g_subtitles_show 1{enter}
  93.         sleep, 330
  94.         SendInput {F1}
  95.     return
  96. #IfWinActive
Add Comment
Please, Sign In to add comment