The Big Control Conundrum
Posts: 247 | Subs: 2
I have a rather basic question since I'm struggling with my controls of the game.
I find 2 features very important:
[1] Being able to scroll around the map with Keys. So you can quickly get an overview over the battlefield without having to move the mouse cursor to the edge of the screen. Standard keybinds for this are the arrow-keys.
[2] Using Grid-Hotkeys.
Now, I cant manage to combine these two features into a reasonable setup. I did re-bind WASD to be used as the arrow-keys, but then I dont have the Grid-Hotkeys anymore. So far its the better solution than screen-scrolling with the mouse while trying to move my bunch of pathfinding-retards around... avoiding a misclick becomes a game within the game...
...but I'm not the smartest guy around... so chances are high someone has a better solution?
cheers,
hanz
Posts: 81
Posts: 247 | Subs: 2
http://www.autohotkey.com/
Its not a technical problem but one of layout. I know how to rebind keys etc. but I dont know how to layout them to have both essential features mentioned above included in a useful way.
I re-phrase my question:
How do you guys layout your controls for camera and hotkeys?
Posts: 157
Posts: 309
http://steamcommunity.com/sharedfiles/filedetails/?id=276815309
I use grid keys + WASD, with tac map bound to tilde (~). Honestly its a bad habbit that I use the WASD keys, and if you are a new player I recommend just using grid keys and rebinding tactical map closer to your QWERT, ASDF, ZXCV and trying to get used to that. Optimal method is you click minimap or double click in tac map if you wanna look at a spot not close to where you are currently looking at, rather than scrolling with mouse too much.
But I included 2 scripts, one with WASD + grid keys + tac map rebound, and one that just rebinds your tactical map.
Posts: 578
Posts: 503
no seriously i doubt there is a convenient way to arrange that. i thought about it, too, yet i need my left hand for the control groups and the ability buttons. i cant imagine also using the wsad key to navigate across the battlefield at the same time. id totally screw up things
but idf someone found an interesting solution to this, please let me know
Posts: 247 | Subs: 2
Middle mouse button for camera controls + grid keys has been the most effective method for me.
But then you have to move the mouse while hold middle mouse button down. Not really convenient.
I made this guide a week ago, its not terribly well made and the video is just me narrating what I wrote without any special visuals lol.
http://steamcommunity.com/sharedfiles/filedetails/?id=276815309
I use grid keys + WASD, with tac map bound to tilde (~). Honestly its a bad habbit that I use the WASD keys, and if you are a new player I recommend just using grid keys and rebinding tactical map closer to your QWERT, ASDF, ZXCV and trying to get used to that. Optimal method is you click minimap or double click in tac map if you wanna look at a spot not close to where you are currently looking at, rather than scrolling with mouse too much.
But I included 2 scripts, one with WASD + grid keys + tac map rebound, and one that just rebinds your tactical map.
I'm using this right now, as described in my initial post. Not solving the problem.
I'm using autohotkey to rebind the arrow keys to WASD, for controlling the camera. This however seems to interfere with the standard bindings that are already bound to WASD. S for stop, W for sandbags etc. So I've designed a script such that the default actions for WASD scroll the map but when I press LCtrl + W/A/S/D, it defaults to the normal operation of that key. It has honestly improved my game A LOT, just to be able to quickly maneuver the map without having to use the mouse. If you want, I can share this script with you.
I can see that work, but it takes some time getting used to pressing CTRL+Hotkey. Not really an "elegant solution".
i actually use a 4way pedal which i operate with my feet...
no seriously i doubt there is a convenient way to arrange that. i thought about it, too, yet i need my left hand for the control groups and the ability buttons. i cant imagine also using the wsad key to navigate across the battlefield at the same time. id totally screw up things
but idf someone found an interesting solution to this, please let me know
Love the 4way pedal! I will use it also for browsing...
How do the "Pros" handle that issue?
Posts: 309
ASD will be displaced, you can rebind them to GBN respectively and leave F as it is. G can be hit by your index finger and BN by your thumb which sits on your spacebar just below. That's what my script is anyway. Uses the grid keys as a baseline and then just rebinds the displaced keys to keybinds close by. Rifle's solution is good though
Posts: 578
I can see that work, but it takes some time getting used to pressing CTRL+Hotkey. Not really an "elegant solution".
Believe me, I searched a lot, but this was the only reasonable solution I found. Getting used to Ctrl + Key isn't as daunting as you think; A couple of games and now it's second nature. Though do share if you find an elegant solution.
Posts: 187
But then again, I kind of suck....So take this all with a grain of salt. Though I think my suckitude has more to do with my inability to multitask than with my map navigation.
Posts: 3552 | Subs: 2
People move the camera around in game?
Posts: 476
I honestly think it is the best solution. But on the other hand, in CoH its not really that imprtant, because you just occasinally use abiltiys, in contrast to a game like DotA/LoL where you always want your fingers on q w e r. So I guess everything works.
You can also play very good, without even using controllgroups, and instead clicking on abilitys
Posts: 247 | Subs: 2
Believe me, I searched a lot, but this was the only reasonable solution I found. Getting used to Ctrl + Key isn't as daunting as you think; A couple of games and now it's second nature. Though do share if you find an elegant solution.
I'd love to try it out, but unfortunately I don't seem to get the script working.
^a::a
..in Autohotkey does not work. How did you bind it?
Posts: 627
Hello.
I have a rather basic question since I'm struggling with my controls of the game.
I find 2 features very important:
[1] Being able to scroll around the map with Keys. So you can quickly get an overview over the battlefield without having to move the mouse cursor to the edge of the screen. Standard keybinds for this are the arrow-keys.
The tactical map could help you with that.
Posts: 1664
Posts: 578
I'd love to try it out, but unfortunately I don't seem to get the script working.
^a::a
..in Autohotkey does not work. How did you bind it?
Here is what I use:
#SingleInstance force
#NoEnv
SetBatchLines, -1
sendMode, Input
return
#if !GetKeyState("LCtrl", "P") && WinActive("Company Of Heroes 2")
w::Up
a::Left
s::Down
d::Right
#if WinActive("Company Of Heroes 2")
*<^w::sendInput {Blind}{LCtrl Up}w{LCtrl Down}
*<^a::sendInput {Blind}{LCtrl Up}a{LCtrl Down}
*<^s::sendInput {Blind}{LCtrl Up}s{LCtrl Down}
*<^d::sendInput {Blind}{LCtrl Up}d{LCtrl Down}
RShift::Suspend
Pressing LCtrl + W/A/S/D will default your WASD keys to their normal functions.
Pressing RShift will suspend the script, this is useful when messaging teammates etc.
Posts: 247 | Subs: 2
The tactical map could help you with that.
No. Since I want to quickly and precisely react (cover move, nade throw, retreat, etc.) to the things happen and not strategically place my units on a map.
Using middle mouse to scroll involves minimal APM. also using autohotkey to set your Tactical Map to Tab or one of your mouse thumb buttons can help you navigate the battlefield with much more efficiency.
But the usage of MiddleMouse "freezes" the mouse for the time you move the screen, which reduces your potential APM to a high degree. Its also not really comfortable.
TacMap is whole other story as mentioned above.
Here is what I use:
Code#SingleInstance force
#NoEnv
SetBatchLines, -1
sendMode, Input
return
#if !GetKeyState("LCtrl", "P") && WinActive("Company Of Heroes 2")
w::Up
a::Left
s::Down
d::Right
#if WinActive("Company Of Heroes 2")
*<^w::sendInput {Blind}{LCtrl Up}w{LCtrl Down}
*<^a::sendInput {Blind}{LCtrl Up}a{LCtrl Down}
*<^s::sendInput {Blind}{LCtrl Up}s{LCtrl Down}
*<^d::sendInput {Blind}{LCtrl Up}d{LCtrl Down}
RShift::Suspend
Pressing LCtrl + W/A/S/D will default your WASD keys to their normal functions.
Pressing RShift will suspend the script, this is useful when messaging teammates etc.
Thank you! I'll play this for a while now and give some feedback. But it actually felt pretty smooth in my first 1 minute try.
Livestreams
13 | |||||
244 | |||||
43 | |||||
26 | |||||
2 | |||||
1 | |||||
1 | |||||
1 | |||||
1 | |||||
1 |
Ladders Top 10
-
#Steam AliasWL%Streak
- 1.831222.789+37
- 2.34957.860+14
- 3.589215.733+4
- 4.1099614.642-1
- 5.280162.633+8
- 6.305114.728+1
- 7.916405.693-2
- 8.271108.715+22
- 9.721440.621+3
- 10.1041674.607-2
Replay highlight
- cblanco ★
- 보드카 중대
- VonManteuffel
- Heartless Jäger
Board Info
7 posts in the last week
39 posts in the last month
Welcome our newest member, Huhmpal01
Most online: 2043 users on 29 Oct 2023, 01:04 AM