32assassin,
Really loving this table. Thanks for the hard work.
I have found that the "magnasave" functions are not quite working correctly, The left flipper activates the left magnasave and the right one does not work at all. I poked around and resolved it and if you replace the existing "plunger code" with the following revised code, the magnasaves will work correctly.
'**********************************************************************************************************
'Plunger code
'**********************************************************************************************************
Sub Table1_KeyDown(ByVal KeyCode)
'If KeyCode=KeyUpperLeft Then Controller.Switch(9)=1
'If KeyCode=KeyUpperRight Then Controller.Switch(10)=1
If KeyDownHandler(keycode) Then Exit Sub
If keycode = PlungerKey Then Plunger.Pullback:playsound"plungerpull"
If keycode = LeftMagnaSave Then:Controller.Switch(9) = 1:End If
If keycode = RightMagnaSave Then:Controller.Switch(10) = 1:End If
End Sub
Sub Table1_KeyUp(ByVal KeyCode)
'If KeyCode=KeyUpperLeft Then Controller.Switch(9)=0
'If KeyCode=KeyUpperRight Then Controller.Switch(10)=0
If KeyUpHandler(keycode) Then Exit Sub
If keycode = PlungerKey Then Plunger.Fire:PlaySound"plunger"
If keycode = LeftMagnaSave Then:Controller.Switch(9) = 0:End If
If keycode = RightMagnaSave Then:Controller.Switch(10) = 0:End If
End Sub
Again thanks for what you do.
My VP Pincab /MAME Arcade Specs: Dell T3400 workstation with Core2 Quad core 3.0GHZ (Q9650) CPU - 8GB of RAM - Nvidia GTX 970
40" PF Sony gaming LED TV, Dual 21" Dell monitors in the backbox - Pinscape dual boards - Full DOF - Full MAME arcade support.