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

How long have you been simracing

  • < 1 year

    Votes: 559 17.4%
  • < 2 years

    Votes: 379 11.8%
  • < 3 years

    Votes: 341 10.6%
  • < 4 years

    Votes: 243 7.6%
  • < 5 years

    Votes: 390 12.1%
  • < 10 years

    Votes: 367 11.4%
  • < 15 years

    Votes: 215 6.7%
  • < 20 years

    Votes: 168 5.2%
  • < 25 years

    Votes: 136 4.2%
  • Ok, I am a dinosaur

    Votes: 419 13.0%
Back
Top