▲ 19 r/RogueCore
Rogue Core Auto Sprint Tutorial (No Injection / No Cheat Engine)
Since there’s no auto-run/sprint toggle yet in Rogue Core, I made a tiny AutoHotkey script that automatically holds Shift whenever you press W.
No DLL injection, no memory editing, no Cheat Engine.
It just sends Shift while moving forward.
Tutorial:
- Install AutoHotkey v2 https://www.autohotkey.com/
- Create a new file called:
​
Autorun.ahk
- Paste this inside:
​
#HotIf WinActive("Deep Rock Galactic: Rogue Core")
~w::
{
Send("{Shift down}")
}
~w up::
{
Send("{Shift up}")
}
#HotIf
- Save the file.
- Double click it.
You should see a green “H” icon in the tray bar.
Now whenever Rogue Core is focused:
- holding W automatically holds Shift
- releasing W releases Shift
- outside the game it does nothing
If it doesn’t work:
- make sure you installed AutoHotkey v2, not v1
- check the exact game window title using Window Spy
Hopefully the devs add a proper auto-run soon, but this works well for now.
u/raulmd13 — 21 hours ago