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
Either make it so that it works with WASD or make it so that when you hold down E the 1234 keys can be used to type in the password. Also items should not be activated when holding down E during this time.
upPressed = (input.KeyboardState.IsKeyDown(Keys.Up) && !input.PreviousKeyboardState.IsKeyDown(Keys.Up));
downPressed = (input.KeyboardState.IsKeyDown(Keys.Down) && !input.PreviousKeyboardState.IsKeyDown(Keys.Down));
leftPressed = (input.KeyboardState.IsKeyDown(Keys.Left) && !input.PreviousKeyboardState.IsKeyDown(Keys.Left));
rightPressed = (input.KeyboardState.IsKeyDown(Keys.Right) && !input.PreviousKeyboardState.IsKeyDown(Keys.Right));
Maybe something like... (to mirror @Zefar's recommendation)
if ( C.CharPlayer.Controls.interact ) {
upPressed = C.CharPlayer.Controls.up;
downPressed = C.CharPlayer.Controls.down;
leftPressed = C.CharPlayer.Controls.left;
rightPressed = C.CharPlayer.Controls.right;
}
else {
... some new bindings ...
}
So I'm all for binding arrow keys to upleftdownright not to wasd, that would be a terrible mix.
felt natural, like... you wouldn't press pad lock while holding a machinegun.
Yeah I agree they should be rebindable. I'll try to have this in the next update (though this one might not make it)
For future scenarios like this, AHK lets you remap your entire keyboard/mouse/gamepad/vr controller device/robot dogs and macro the hell out of everything.
Spread the word. Knowledge is power.
Starting out:
https://autohotkey.com/board/topic/48540-bind-wasd-as-arrow-keys/
Honestly surprised no one else brought it up yet either.