Hi Muck,
You'll need to find your keyconfig.plist as Okti suggested. I'm afraid I have no idea where that will be in Vista, but a search for 'resources' might turn it up.
Once you've found it you will see a list like the one you found on BerliOS.
Now, it's best not to mess around with the 'main' keyconfig file (I hope) you found, so copy it and put it in your AddOns folder (where you put OXPs - again I don't know where this is under Vista). It is this copy you can edit.
The letters in double quotes are the keys used.
Let's look at the speed. It will currently look like this
Code: Select all
key_increase_speed = " ";
key_decrease_speed = "/";
key_inject_fuel = "i";
where 'spacebar' is increase speed and '/' is decrease speed. If you wanted to reverse this, so 'spacebar' decreases speed, you'd need to edit it thus.
Code: Select all
key_increase_speed = "/";
key_decrease_speed = " ";
key_inject_fuel = "i";
One last word of advice. When editing anything Oolite, DON'T use notepad. Notepad adds unwanted characters and breaks things badly, so use Notepad++ or any other good text editor.
Hope this helps a bit.