I have no idea if DOF would have an effect either, as i am only a DT table user, and have no experience with these cabinet addons.
Does this menu in options allow to shutoff the DOF to Flippers? So to see if it is the DOF effecting the fastflips process?

Or perhaps try modifying script starting at Line 290, and take out the DOF and SoundFX so looks like this...
Sub SolRFlipper(Enabled)
If Enabled Then
RightFlipper.RotateToEnd
PlaySound("fx_flipperup"), 0, .4, 0.05, 0.05
Else
RightFlipper.RotateToStart
PlaySound("fx_flipperdown"), 0, .4, 0.05, 0.05
End If
End Sub
Sub SolURFlipper(Enabled)
If Enabled Then
Flipper1.RotateToEnd
' PlaySound("fx_flipperup"), 0, 1, 0.05, 0.05
Else
Flipper1.RotateToStart
' PlaySound("fx_flipperdown"), 0, 1, 0.05, 0.05
End If
End Sub
Sub SolLFlipper(Enabled)
If Enabled Then
LeftFlipper.RotateToEnd
PlaySound("fx_flipperup"), 0, .4, -0.05, 0.05
Else
LeftFlipper.RotateToStart
PlaySound("fx_flipperdown"), 0, .4, -0.05, 0.05
End If
End Sub
Sub SolULFlipper(Enabled)
If Enabled Then
Flipper2.RotateToEnd
If LeftFlipperButton = 0 Then PlaySound("fx_flipperup"), 0, .1, -0.05, 0.05
Else
PlaySound("fx_flipperdown"), 0, .1, -0.05, 0.05
Flipper2.RotateToStart
End if
End Sub
Will this stop the DOF calls? and allow to see if this is what is effecting Fastflips?
I am sure you have got this Fastflips to work with other tables that use DOF, so this really makes it hard to narrow down what the cause could be.
Edited by xenonph, 12 January 2018 - 01:19 AM.