Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ven0m0 authored Aug 19, 2022
1 parent 0618cb6 commit 4fa6f4b
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Other/RemotePlay Whatever.ahk
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
18 changes: 18 additions & 0 deletions Other/Ryujinx LDN.ahk
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

0 comments on commit 4fa6f4b

Please sign in to comment.