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

What is the reason for your passion for sim racing?

  • Watching real motorsport

    Votes: 396 69.5%
  • Physics and mechanics

    Votes: 251 44.0%
  • Competition and adrenaline

    Votes: 267 46.8%
  • Practice for real racing

    Votes: 119 20.9%
  • Community and simracers

    Votes: 158 27.7%
Back
Top