I have a portable which doesn't have the NUMLOCKPLUS and NUMLOCKMINUS... So I resorted to buying a small extension keyboard (half the size / function keys only go to F5) and remapping it as follows :
In Autohotkey :
F10::NumPadAdd
F11::NumPadSub
F12::NumPadMult
And in LUAMacros (used the sample code from the Wiki) :
lmc_assign_keyboard('MACROS');
lmc_set_handler('MACROS',function(button, direction)
if (direction == 1) then return end -- ignore down
if (button == string.byte('Q')) then lmc_send_keys('{F10}')
elseif (button == string.byte('W')) then lmc_send_keys('{F11}')
elseif (button == string.byte('E')) then lmc_send_keys('{F12}')
else print('Not yet assigned: ' .. button)
end
end)
In W10, this works - I've opened a keyboard tester and the Q/W and E on my halfsized keyboard, resolve to +, - and *
But in Commandos (the GOG version), this doesn't seem to do anything. F10/F11/F12 on my portable work, Q/W/E on my half keyboard do nothing.
Any suggestions would be very appreciated

/dimi
UPDATE : As I realized that the Autohotkey part was overkill and redundant, I modified it to (still nothing being triggered in that game though):
if (button == string.byte('Q')) then lmc_send_keys('{NUMPLUS}')
elseif (button == string.byte('W')) then lmc_send_keys('{NUMMINUS}')
elseif (button == string.byte('E')) then lmc_send_keys('{NUMMULTIPLY}')