Jump to content

Ball stuck in launch lane


ChiefArcade

Recommended Posts

Posted

I have found a couple of VPX tables are unable to launch the ball for what appears to be casualty of size of the pinball.    I've tried selecting 'Cabinet anti-stretch the ball' but doesn't correct the problem.  Running on the ALP (3/4 scale table).  Is the answer to experiment with Aspect Ratio Offset or is the answer elsewhere ?

 

 

Thanks in advance,

Posted

You have C key bound to starting the game and also pausing the ball essentially. You can edit this in the script by deleting that bit of the script, or turning it off with a “0”. It should look something like 

 

If keycode = 46 Then ' C Key If EnableBallControl = 1 Then EnableBallControl = 0 Else EnableBallControl = 1 End If End If If EnableBallControl = 1 Then

 

1 is on, 0 is off….thus

 

It has nothing to do with ratio or the ball being too small.

Posted

Found it, not sure I understand it.

 

 If keycode = 46 Then' C Key
       stopSound "FlipBuzzLA"
       stopSound "FlipBuzzLB"
       stopSound "FlipBuzzLC"
       stopSound "FlipBuzzLD"
       stopSound "FlipBuzzRA"
       stopSound "FlipBuzzRB"
       stopSound "FlipBuzzRC"
       stopSound "FlipBuzzRD"
        If contball = 1 Then
            contball = 0
          Else
            contball = 1
        End If
    End If

 

 

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...