Enemy Front

Enemy Front

評價次數不足
Toggle aim with external software (autohotkey)
由 cOldhandle 發表
The developers didn't bother to enable toggle aim on this console port, so here's the autohotkey script I used. If any developers see this, please consider including toggle aim in your FPS as some players (like me) have a hard time holding down the right mouse button for long periods of time.
   
獎勵
加入最愛
已加入最愛
移除最愛
How to set up, run and exit script
First install the third-party software Autohotkey[autohotkey.com]

Create a new file, open it with notepad and paste in this script:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. LShift::Control *RButton:: if (Toggle == False) { Send, {P Down} Toggle := True } else { Send, {P Up} Toggle := False } return

Save this file as whatever you want, but with the extension .ahk

Double click this file to run it before starting the game, and quit it when you stop playing. As we're over-riding the right mouse button you won't be able to use that normally until you exit the script - to do this, double click the Autohotkey icon in the notifications area of the taskbar (a white "H" on a green square) and choose file->exit.

In game, bind aim to P and bind run to CTRL

Notes
For some reason, pressing shift disengages ADS (this behaviour seems to be hardcoded into the game) so that's why I said to bind run to CTRL.

This line causes Autohotkey to interpret all presses of shift as presses of CTRL:
LShift::Control

This will cause problems if you like to use CTRL for another function (such as crouch) and you will have to edit the script yourself.

To access the Steam overlay in-game, you will have to use the right shift and tab, and also if you want to capitalize letters in chat etc.
Conclusion
Hopefully you can now enjoy this game without developing carpal tunnel syndrome!
Remember that if your right mouse button and left shift key are behaving strangely, you probably forgot to exit Autohotkey after quitting the game :D