Files
AHK-Scripts/EldenRingNIGHTREIGN fix.ahk
MohandL3G e5d6f480da Add AutoHotkey utility scripts
Adds four AutoHotkey scripts: DeadCells Auto Save (AHK v2) — F6 runs an elevated robocopy backup of the Steam userdata save folder to a Desktop "Dead Cells Backup" with timestamped folders and retention keeping the 7 newest backups; shows success/failure. EldenRingNIGHTREIGN fix — when nightreign.exe is active remaps Tab to sc032 (M) while allowing Shift+Tab and Alt+Tab to pass through. Idle Auto Playing — F8 starts an infinite loop sending 'w' and 'd' with 100ms delay; F9 hotkey is present but does not currently stop the loop. SmallKeyboardFix — maps Ctrl+Up and Ctrl+Shift+Up to vkBF (unshifted and shifted).
2026-03-03 16:00:42 +02:00

24 lines
461 B
AutoHotkey

#SingleInstance Force
#UseHook
SendMode Input
SetKeyDelay -1, -1
#IfWinActive ahk_exe nightreign.exe
; Fully ignore Shift+Tab so Steam sees it
$Tab::
if GetKeyState("Shift", "P") {
SendInput {Blind}{Tab} ; Let Steam handle it — no override
return
}
if GetKeyState("Alt", "P") {
SendInput {Blind}{Tab} ; Let Alt+Tab work normally
return
}
; Otherwise, remap Tab to M
SendInput {sc032 down}
Sleep 30
SendInput {sc032 up}
return
#IfWinActive