Guest User

Metro Exodus RH Saving

a guest
Jun 3rd, 2020
167
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.     ; Save & Load Slots
  7.     F2::
  8.         SendInput {F1}
  9.         sleep, 200
  10.         SendInput gamesave custom_save1{enter}
  11.         sleep, 200
  12.         SendInput {F1}
  13.     return
  14.  
  15.     ^F2::
  16.         SendInput {F1}
  17.         sleep, 200
  18.         SendInput gameload custom_save1{enter}
  19.     return
  20.  
  21.     F3::
  22.         SendInput {F1}
  23.         sleep, 200
  24.         SendInput gamesave custom_save2{enter}
  25.         sleep, 200
  26.         SendInput {F1}
  27.     return
  28.  
  29.     ^F3::
  30.         SendInput {F1}
  31.         sleep, 200
  32.         SendInput gameload custom_save2{enter}
  33.     return
  34.  
  35.     F4::
  36.         SendInput {F1}
  37.         sleep, 200
  38.         SendInput gamesave custom_save3{enter}
  39.         sleep, 200
  40.         SendInput {F1}
  41.     return
  42.  
  43.     ^F4::
  44.         SendInput {F1}
  45.         sleep, 200
  46.         SendInput gameload custom_save3{enter}
  47.     return
  48.  
  49.     ; Quicksave
  50.     F5::
  51.         SendInput {F1}
  52.         sleep, 200
  53.         SendInput gamesave quick_save{enter}
  54.         sleep, 200
  55.         SendInput {F1}
  56.     return
  57.  
  58.     ; Checkpoint Auto Save
  59.     F6::
  60.         SendInput {F1}
  61.         sleep, 200
  62.         SendInput gamesave{enter}
  63.         sleep, 200
  64.         SendInput {F1}
  65.     return
  66.  
  67.     ; "Autoexec"
  68.     F12::
  69.         SendInput {F1}
  70.         sleep, 200
  71.         SendInput r_foliage_hemi_ao 0{enter}
  72.         sleep, 200
  73.         SendInput r_foliage_new_ao 0{enter}
  74.         sleep, 200
  75.         SendInput {F1}
  76.     return
  77.  
  78.     ; Subtitle Toggle
  79.     F10::
  80.         SendInput {F1}
  81.         sleep, 200
  82.         SendInput g_subtitles_show 0{enter}
  83.         sleep, 200
  84.         SendInput {F1}
  85.     return
  86.  
  87.     F11::
  88.         SendInput {F1}
  89.         sleep, 200
  90.         SendInput g_subtitles_show 1{enter}
  91.         sleep, 200
  92.         SendInput {F1}
  93.     return
  94.  
  95. #IfWinActive
Add Comment
Please, Sign In to add comment