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
Pressing three things, direction, block and jump, is very cumbersome.
If you decide to try it out, I will help you write the script. It's terribly easy, and I'll show you how to make it so it only activates when you run the specific program. You can make single button presses equate to multiple button presses, too, so there's that.
If you decide to go another route, disregard.
I'd be interested. I tried the one below, but for some reason it doesn't work...my character just jumps instead of dodging.
; Remap Left Shift to Right Mouse button and Space
LShift::
Send, {RButton}
Send, {Space}
return
Have you tried switching the order of the inputs? I do know that they are not sent at the same time, on a technical level. That might have something to do with it.
Also might and to try adding "down" and "up" indications. See the following reddit thread for examples.
https://www.reddit.com/r/AutoHotkey/comments/3yi6w1/two_keys_at_once/
Personally I would just recommend that you commit to learning the muscle memory. It is easy to practice as it is a heck of a lot more generous than Dark Souls when it comes to i-frames. You just want to do it in one split second clenching motion. The only thing you can mess up is hitting jump before block. Don't even think of it as hitting two separate keys. It is all one key.
You're right, that was the problem. I did the following and now it works great!
#IfWinExist, Valheim
#IfWinActive, Valheim
LShift::
Send, {RButton down}
Send, {Space down}
Sleep 20
Send {RButton up} {Space up}
return
#IfWinExist
#IfWinActive
For me, the biggest problem I've had are keys getting "stuck" in a down position. For example, I play games on the ten key rather than WASD. Often, movement gets stuck. I've tried using send functions with downs and ups, but I still run into the issue. One thing I haven't tried is using a sleep command.
Below is an example of something I have setup for a few games, after looking around trying to find a solution. Still getting stuck.
Mind keeping an eye on your result, see if anything like that seems to happen with your buttons, and letting me know if it does?
Question is, will OP ever show back up? Hope they get it sorted out either way.