Keyboard layout
#6
Yes, then copy the vanilla-file over to your personal files (game-home) and edit there.
It's normal to get 2 messages - on for KEY_DOWN, one for KEY_UP - I just cleaned up my output.
You will need to do this with basically ALL the keys:
Take note of the keysym-value - it's HEX, e.g. for your W 0x6c3 - then transform into DEC - 0x6c3 == 1731.
If this is available on a Mac you might have an easier time of it by using :
dumpkeys --long-info
This might require superuser-permissions to access /dev/console .. but I'm not familiar with the Mac OS X in that detail.
Thanks given by:


Messages In This Thread
Keyboard layout - by holodila - 13 Nov 10, 05:11PM
RE: Keyboard layout - by holodila - 13 Nov 10, 08:15PM
RE: Keyboard layout - by flowtron - 13 Nov 10, 09:35PM
RE: Keyboard layout - by holodila - 13 Nov 10, 10:15PM
RE: Keyboard layout - by Faron8 - 14 Nov 10, 12:14AM
RE: Keyboard layout - by flowtron - 14 Nov 10, 06:10PM