Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- #SingleInstance Force
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- #IfWinActive ahk_exe MetroExodus.exe
- SC15B::/ ; LWin => /
- ; Save & Load Slots
- F2::
- SendInput {F1}
- sleep, 330
- SendInput gamesave custom_save1{enter}
- sleep, 330
- SendInput {F1}
- return
- ^F2::
- SendInput {F1}
- sleep, 330
- SendInput gameload custom_save1{enter}
- return
- F3::
- SendInput {F1}
- sleep, 330
- SendInput gamesave custom_save2{enter}
- sleep, 330
- SendInput {F1}
- return
- ^F3::
- SendInput {F1}
- sleep, 330
- SendInput gameload custom_save2{enter}
- return
- F4::
- SendInput {F1}
- sleep, 330
- SendInput gamesave custom_save3{enter}
- sleep, 330
- SendInput {F1}
- return
- ^F4::
- SendInput {F1}
- sleep, 330
- SendInput gameload custom_save3{enter}
- return
- ; Quicksave
- F5::
- SendInput {F1}
- sleep, 330
- SendInput gamesave quick_save{enter}
- sleep, 330
- SendInput {F1}
- return
- ; Checkpoint Auto Save
- F6::
- SendInput {F1}
- sleep, 330
- SendInput gamesave{enter}
- sleep, 330
- SendInput {F1}
- return
- ; "Autoexec"
- F12::
- SendInput {F1}
- sleep, 330
- SendInput r_foliage_hemi_ao 0{enter}
- sleep, 330
- SendInput r_foliage_new_ao 0{enter}
- sleep, 330
- SendInput {F1}
- return
- ; Subtitle Toggle
- F10::
- SendInput {F1}
- sleep, 330
- SendInput g_subtitles_show 0{enter}
- sleep, 330
- SendInput {F1}
- return
- F11::
- SendInput {F1}
- sleep, 330
- SendInput g_subtitles_show 1{enter}
- sleep, 330
- SendInput {F1}
- return
- #IfWinActive
Add Comment
Please, Sign In to add comment