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).
8 lines
149 B
AutoHotkey
8 lines
149 B
AutoHotkey
^Up:: ; Ctrl + Up = base vkBF (e.g., / or ظ)
|
|
Send {vkBF}
|
|
return
|
|
|
|
^+Up:: ; Ctrl + Shift + Up = shifted vkBF (e.g., ? or ؟)
|
|
Send +{vkBF}
|
|
return
|