-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#SingleInstance Force | ||
#Warn ; Enable warnings to assist with detecting common errors. | ||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | ||
#KeyHistory 0 | ||
ListLines Off ; ListLines and #KeyHistory are functions used to "log your keys". Disable them as they're only useful for debugging purposes. | ||
SetKeyDelay, -1, -1 | ||
SetMouseDelay, -1 | ||
SetDefaultMouseSpeed, 0 ; Even though SendInput ignores SetKeyDelay, SetMouseDelay and SetDefaultMouseSpeed, having these delays at -1 improves SendEvent's speed just in case SendInput is not available and falls back to SendEvent. | ||
SetWinDelay, -1 | ||
SetControlDelay, -1 ; SetWinDelay and SetControlDelay may affect performance depending on the script. | ||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
SetTitleMatchMode, 2 ; Use SetTitleMatchMode 2 when you want to use wintitle that contains text anywhere in the title | ||
SetTitleMatchMode, Fast | ||
|
||
Run, C:\Program Files (x86)\Steam\steam.exe | ||
DllCall("kernel32.dll\Sleep", "UInt", 2000) | ||
If !WinExist("ahk_exe steam.exe") | ||
Run, C:\Program Files (x86)\Steam\steam.exe | ||
WinWait, ahk_exe steam.exe | ||
Run, C:\Users\janni\OneDrive\Backup\Game\Other\Tools\Multiplayer\RemotePlayWhatever\RemotePlayWhatever.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#SingleInstance Force | ||
#Warn ; Enable warnings to assist with detecting common errors. | ||
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | ||
#KeyHistory 0 | ||
ListLines Off ; ListLines and #KeyHistory are functions used to "log your keys". Disable them as they're only useful for debugging purposes. | ||
SetKeyDelay, -1, -1 | ||
SetMouseDelay, -1 | ||
SetDefaultMouseSpeed, 0 ; Even though SendInput ignores SetKeyDelay, SetMouseDelay and SetDefaultMouseSpeed, having these delays at -1 improves SendEvent's speed just in case SendInput is not available and falls back to SendEvent. | ||
SetWinDelay, -1 | ||
SetControlDelay, -1 ; SetWinDelay and SetControlDelay may affect performance depending on the script. | ||
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
SetTitleMatchMode, 2 ; Use SetTitleMatchMode 2 when you want to use wintitle that contains text anywhere in the title | ||
SetTitleMatchMode, Fast | ||
|
||
Run, C:\Users\janni\OneDrive\Backup\Game\Emul\Yuzu\Ryujinx LDN\Ryujinx.exe | ||
DllCall("kernel32.dll\Sleep", "UInt", 250) | ||
WinHide, Ryujinx Console 1.0.0-ldn2.4 |