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's needed for simracing in 2024?

  • More games, period

  • Better graphics/visuals

  • Advanced physics and handling

  • More cars and tracks

  • AI improvements

  • AI engineering

  • Cross-platform play

  • New game Modes

  • Other, post your idea


Results are only viewable after voting.
Back
Top