Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I use a program called AutoHotKey to remap WASD LShit and LControl to the NumberPad 8,4,2, 6 and RShift and RControl. Not much else you can do until the esteemed devs get off their a$$]-[oles! and add this very simple feature.
The script is also unweildy since it times out when you hold a key too long or it does in my experience.
The AutohotKey script I use now is as follows:
#IfWinActive, ahk_class UnrealWindow ;
#HotkeyInterval 500 ; This is the default value (milliseconds).
#MaxHotkeysPerInterval 200
SendMode Input ;
setbatchlines, -1
NumpadUp::w ;Redirect NumpadUp to W - Walk Forward
NumpadDown::s ;Redirect NumpadDown to S - Walk Backwards
NumpadLeft::a ;Redirect NumpadLeft to A - Walk Left
NumpadRight::d ;Redirect NumpadRight to D - Walk Right
NumpadIns::LCtrl ;Redirect NumpadIns to LCtrl - Left Control = Crouch (Counselor)
NumpadEnter::LShift ;Redirect NumpadEnter to LShift - Left Shift = Run/Fast Walk (Jason)
NumpadMult::x ;Jog (Counselor)
NumpadDiv::c ;Combat Stance
PgDn::T ;Push to Talk
;everything below this point is comment. I have listed the default controls and their actions.
;Friday the 13th Default Controls - Counselor/Jason/Vehicles
;Forward W Combat Stance C
;Backwards /Dodge Back (Combat) S Attack(Combat) Mouse 1
;Left / Dodge Left(Combat) A Block (Combat) Mouse 2
;Right / Dodge Right (Combat) D
;Interact E
;Crouch Left Control
;Jog X Show Scoreboard Tab
;Run/Fast Walk Left Shift Push to Talk T
;Flashlight / Horn(Vehicle) F Pause Escape
;Map/Objectives M
;Use Small Selected Item G
;Drop Large Item Z (hold)
;Rear View R
;Hold Breath (when hiding) /Brake (Vehicle) Space Bar
;Break Free E
;Place Trap R
;Use Small Item 1 / Morph (Jason) /Grab Kill Slot1 1
;Use Small Item 2 / Sense (Jason) /Grab Kill Slot2 2
;Use Small Item 3 / Shift (Jason) /Grab Kill Slot3 3
; / Stalk (Jason) /Grab Kill Slot4 4
;Use Large Item / Attack (Jason) Mouse 1
;Aim / Grab (Jason) Mouse 2
;Next Inv Item / Throw Knife (Jason) Mouse 3 (Scroll up)
;Prev Inv Item / Aim Knife (Jason) Mouse 3 (Scroll Down) / Aim (Hold)