Posted November 05, 2013
This works really easy but there's one gotcha, so I might as well send it here.
If you want to aim with the right mouse button as we're used to, use this Autohotkey script
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
Run C:\Games\Deadly Premonition\DP.exe
#IfWinActive, Deadly Premonition
RButton::Space
Change the install path to Deadly Premonition according to your settings.
The WSAD keys are not remappable. Here's a script for ESDF movement:
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
Run D:\Games\Deadly Premonition\DP.exe
#IfWinActive, Deadly Premonition
RButton::Space
e::w
s::a
d::s
f::d
Note: If you want to start the launcher instead of the game itself, you must run the script as administrator, otherwise it won't work.
If you want to aim with the right mouse button as we're used to, use this Autohotkey script
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
Run C:\Games\Deadly Premonition\DP.exe
#IfWinActive, Deadly Premonition
RButton::Space
The WSAD keys are not remappable. Here's a script for ESDF movement:
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
Run D:\Games\Deadly Premonition\DP.exe
#IfWinActive, Deadly Premonition
RButton::Space
e::w
s::a
d::s
f::d
Post edited November 05, 2013 by Revisor