u/raulmd13

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:

  1. Install AutoHotkey v2 https://www.autohotkey.com/
  2. Create a new file called:

​

Autorun.ahk
  1. Paste this inside:

​

#HotIf WinActive("Deep Rock Galactic: Rogue Core")

~w::
{
    Send("{Shift down}")
}

~w up::
{
    Send("{Shift up}")
}

#HotIf
  1. Save the file.
  2. 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.

reddit.com
u/raulmd13 — 21 hours ago