H-Shifting with joystick

I recently downloaded this with turns your average flight sim/aviation joystick to a H-shifting gearbox using numbers that become reecognised when you move it to different positions.

number 9 for gear 1
number 8 for gear 2
ect.

What my problem here is that I am trying to get these numbers into Racer by adding them into the 'advanced' control setting but they just won't be detected. Is this because the cameras positions are already assigned to the numbers?

http://sourceforge.net/projects/j2hshifter/
 
Interesting project. It could be because of that, Racer might ignore keystrokes of the digits in the controls setup screen.
You could go around with scripting, but the main thing is, if you need this helper program, you probably don't have a clutch pedal. If you had one, you also would have had a H-shifter.
 
You could go around with scripting,
A simple script might also help to figure out what key presses it's actually sending (or if it's just not working with Racer).

Code:
while 1 
{
  int $i = 0
  int $j = 0
  for $i < 100 {
    if is key $i pressed {
      paint $i at float[2]{30,10+20*$j}
      $j = $j + 1
    }
    $i = $i + 1
  }
  interrupt
}

When you press keys, this script should print their number on the screen (put it in the /paint folder)
 

Latest News

To join the OverTake Racing Club races I want them to be: (multiple choice)

  • Free to access

    Votes: 41 85.4%
  • Better structured events

    Votes: 7 14.6%
  • Better structured racing club forum

    Votes: 8 16.7%
  • More use of default game content

    Votes: 4 8.3%
  • More use of fixed setups

    Votes: 15 31.3%
  • No 3rd party registration pages

    Votes: 15 31.3%
  • Less casual events

    Votes: 6 12.5%
  • More casual events

    Votes: 15 31.3%
  • Other, specify in thread

    Votes: 1 2.1%
Back
Top