I'm using numpad for movement. I never run, though if I would, I would use numpad dot first. I moved all my hotkeys from the numbers to the numpad. The hotkeys are written right-aligned, and go much past the left side of the icons at both 32px and 64px.
I changed "[A]+[S]+Keypad +" to "ASK+" by changing game/engines/te4-1.0.4.teae/engine/KeyBind.lua to read
Code: Select all
if ctrl then sym = "C"..sym end
if shift then sym = "S"..sym end
if alt then sym = "A"..sym end
if meta then sym = "M"..sym end
sym = string.gsub(sym,"Keypad ","K")
This is a hack, and not the correct way to fix it. However, a visual change like this "offlines" the game, even when compressed again. Maybe hotkeys should bounce sideways like other text does when oversize.
