OfftheRails
Registered User
- Joined
- Aug 19, 2011
- Messages
- 4,644
- Age
- 43
I use autohotkey to customise my controls and allow for things like joystick buttons that only work as long as they're held down... I've also got a useful little script that displays my throttle percentage on the screen. Handy for learning to land the jets, hover the choppers and to make sure you're stopped on the runway.
A couple of things to know - it's set up right now to use BF2 colours and display itself in the bottom right of a 1920*1080 display. You can alter the position and appearance of the indicator by editing the file in notepad. I've commented the variables that can be edited; they are lines 20-29 if you're using notepad++ or similar.
I have the indicator display a number between -100% to +100%. 0% is idling the engines in a jet or a perfectly flat hover in a chopper. If you prefer a different scale you'll need to edit the following line in the Code section at the bottom of the script:
Put whatever function you want. Change it to
to set the scale to 0% to 100%, or change it to something completely different.
FYI, PB has no trouble at all with these scripts in spite of a fairly bad rep from Dolphin Diving Days. BF2 is pretty good at detecting and ignoring virtual mouse clicks and so forth.
A couple of things to know - it's set up right now to use BF2 colours and display itself in the bottom right of a 1920*1080 display. You can alter the position and appearance of the indicator by editing the file in notepad. I've commented the variables that can be edited; they are lines 20-29 if you're using notepad++ or similar.
I have the indicator display a number between -100% to +100%. 0% is idling the engines in a jet or a perfectly flat hover in a chopper. If you prefer a different scale you'll need to edit the following line in the Code section at the bottom of the script:
Code:
throttle := 100 - (2 * joyz)
Put whatever function you want. Change it to
Code:
throttle := 100 - (joyz)
to set the scale to 0% to 100%, or change it to something completely different.
FYI, PB has no trouble at all with these scripts in spite of a fairly bad rep from Dolphin Diving Days. BF2 is pretty good at detecting and ignoring virtual mouse clicks and so forth.