It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
Hello there guys, i recently got this game and i was playing it but i only have a laptop.
The only problem it's i cannot change the game speed, because i'm missing the - and the + on the numpad, it's there any way to change the commands to use other shortcuts? Or anybody here have any other soluction?
Thanks to all!
You might try a macro type program, like AutoHotkey, to remap keys. AutoHotkey is an extremely powerful and versatile tool, however in order to accomplish something like this the process is very simple.

Once AutoHotkey is installed it requires a script to run in order to perform its functions. The scripts are just text files with an .ahk extension. In order to do a basic key remapping you would create a script containing something like the following lines:

j::NumpadSub
k::NumpadAdd

Once running this will effectively make your J and K keys (or whatever key you specify as the initial key to rebind) function as the numpad subtract and add keys.

A list of keys and functions recognizable to AHK can be found here.


Also, we don't know what type of notebook you have but many models can simulate extra keystrokes that they don't physically have by use of a special key, normally this may be called a function key (not to be confused with F1-F12), labeled as "Fn" and perhaps a special color like blue or orange which may also match other keys on the keyboard. Just as an example, I have a notebook next to me which I would press the combination of Fn+P to produce the nonexistent numpad subtract key.
Post edited May 12, 2014 by Red_Frog
Thanks for the reply Red Frog i already have tried the FN option to try to simulatr the numpad keys but he doesn't work only in blitzkrieg for some reasons, also i tried to configurate the keys in the config file but i can't either here.
I will try your program thanks!
avatar
GT78: Hello there guys, i recently got this game and i was playing it but i only have a laptop.
The only problem it's i cannot change the game speed, because i'm missing the - and the + on the numpad, it's there any way to change the commands to use other shortcuts? Or anybody here have any other soluction?
Thanks to all!
I found on my ASUS that I could do it by using fn+"insert" first. This activates my numeric keypad. Then my semi-colon and backslash keys worked as proper numeric keypad + and minus keys. It's not as convenient as just using a usb numeric keypad (which I've also tried), but it gets the job done.
Post edited February 16, 2017 by sdoudera
avatar
GT78: Hello there guys, i recently got this game and i was playing it but i only have a laptop.
The only problem it's i cannot change the game speed, because i'm missing the - and the + on the numpad, it's there any way to change the commands to use other shortcuts? Or anybody here have any other soluction?
Thanks to all!
To anyone from 2018:
1. Go to Blitzkrieg installation folder. You can do it from game library in steam -> property of Blitzkrieg game.
2. Find and open config.cfg with Notepad or similar program.
3. Search for "speed".
4. Focus on this block:
<item><Name>game_speed_inc</Name><Type>event down</Type><Controls><item>NUM_PLUS</item></Controls></item><item>&a mp;l t;Name>game_speed_dec</Name><Type>event down</Type><Controls><item>NUM_MINUS</item></Controls></item>
5. Change NUM_PLUS and NUM_MINUS values to your keys, like J and K:
<item><Name>game_speed_inc</Name><Type>event down</Type><Controls><item>J</item></Controls></item><item><Name& amp; gt;game_speed_dec</Name><Type>event down</Type><Controls><item>K</item></Controls></item>
6. Save the file.
7. Start the game.
8. PROFIT.
Thanks a lot TRIGGER! That works.