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 often do you meet up (IRL) with your simracing friends?

  • Weekly

    Votes: 26 9.4%
  • Monthly

    Votes: 15 5.4%
  • Yearly

    Votes: 21 7.6%
  • Weekly at lan events

    Votes: 1 0.4%
  • Monthly at lan events

    Votes: 1 0.4%
  • Yearly at lan events

    Votes: 5 1.8%
  • Never have

    Votes: 217 78.1%
Back
Top