Discuss the massively-multiplayer home defense game.
You are not logged in.
Pages: 1
I really enjoy the safety the Enter-confirmation mode provides (my keyboard is a bit touchy), but enter is an annoying button to press. I normally use wasd so anything close enough to that would be nice. I can use the arrow keys and reach enter, but it's still awkward.
It would be real nice to be able to remap the confirm button to be 'space' or 'f' or any easily reachable key, or even have a click confirm. I tried looking through the settings ini files but couldn't find anything. Is there any way to remap?
Offline
I really like this "Space button to confirm" idea.
Offline
If the feature is missing from the game, you can pull this off pretty easily using autohotkey.
#IfWinActive The Castle Doctrine
Return::Space
Space::Return
Offline
Unfortunately it looks like the key is hard-coded in rather than in an .ini file.
I think for what you describe it would require changing the value from 13 to 32. And you'd also need to be able to build it.
Overall, autohotkey is probably the easiest idea here.
void RobHouseGridDisplay::keyDown( unsigned char inASCII ) {
if( mSafeMoveMode && mSafeMoveProposed ) {
if( inASCII == 13 ) {
mSafeMoveConfirmed = true;
// apply move again, now that we have confirmation
moveRobber( mSafeMoveIndex );
}
}
HouseGridDisplay::keyDown( inASCII );
}
Offline
O nice, I bought the game through steam so I forgot that I have the source. Thanks for looking into that for me.
Offline
Pages: 1