I have ask to chat gpt how to launch the ball
here is the orignal script from JP's Terminator 3 (Stern 2003) v600 :
line 173
'**********
' Keys
'**********
Sub table1_KeyDown(ByVal Keycode)
If keycode = LeftTiltKey Then Nudge 90, 6:PlaySound SoundFX("fx_nudge", 0), 0, 1, -0.1, 0.25
If keycode = RightTiltKey Then Nudge 270, 6:PlaySound SoundFX("fx_nudge", 0), 0, 1, 0.1, 0.25
If keycode = CenterTiltKey Then Nudge 0, 8:PlaySound SoundFX("fx_nudge", 0), 0, 1, 0, 0.25
If keycode = RightMagnaSave Then controller.switch(53) = true
If keycode = keyfront Then controller.switch(53) = true
If vpmKeyDown(keycode)Then Exit Sub
If keycode = PlungerKey Then PlaySoundat "fx_solenoidOn", sw16:controller.switch(55) = True
End Sub
Sub table1_KeyUp(ByVal Keycode)
If keycode = RightMagnaSave Then controller.switch(53) = False
If keycode = keyfront Then controller.switch(53) = False
If vpmKeyUp(keycode)Then Exit Sub
If keycode = PlungerKey Then PlaySoundAt "fx_solenoidOff", sw16:controller.switch(55) = False
End Sub
Chat gpt tells me to change by
Sub table1_KeyDown(ByVal Keycode)
If keycode = PlungerKey Then
PlaySoundat "fx_solenoidOn", sw16
controller.switch(55) = True
End If
If keycode = LeftTiltKey Then Nudge 90, 6:PlaySound SoundFX("fx_nudge", 0), 0, 1, -0.1, 0.25
If keycode = RightTiltKey Then Nudge 270, 6:PlaySound SoundFX("fx_nudge", 0), 0, 1, 0.1, 0.25
If keycode = CenterTiltKey Then Nudge 0, 8:PlaySound SoundFX("fx_nudge", 0), 0, 1, 0, 0.25
If keycode = RightMagnaSave Or keycode = keyfront Then controller.switch(53) = true
If vpmKeyDown(keycode) Then Exit Sub
End Sub
Sub table1_KeyUp(ByVal Keycode)
If keycode = PlungerKey Then
PlaySoundAt "fx_solenoidOff", sw16
controller.switch(55) = False
End If
If keycode = RightMagnaSave Or keycode = keyfront Then controller.switch(53) = False
If vpmKeyUp(keycode) Then Exit Sub
End Sub
Now I can launch on my pincab the ball fire button :-)