ALTSound
1 file
-
Viper Night Drivin (SEGA 1998) German Altsound - Pinballpunks
By Blahblah
Altsound with german translated vocals for Viper Night Drivin'.
IMPORTANT NOTE ABOUT THE TABLE (Viper Night Drivin' (Sega 1998) 1.0d).
The Viper Night Drivin' table from Goldchicco, 32assassin and Andrei Miraklov does have a bug (since VPX version 10.7+), which can make the table unplayable due to “light glare”.
Since there is no official update/fix for this bug yet, I have a fix for you.
Replace the code blocks between line 284 to 314 in the table script with the following working code:
Sub GITimer_Timer() If Not GITimer.Enabled Then GITimer.Enabled = True ' Erhöhe / verringere GIStep je nach GIDir GIStep = GIStep + GIDir ' 1) GIStep begrenzen (nur 0 bis 2) If GIStep < 0 Then GIStep = 0 If GIStep > 2 Then GIStep = 2 Debug.Print GIStep SetShadowOpacityAndGIOverhead SetGIIllumination SetGIIlluminationInv Set3DModels SetMaterials SetRamps ' GI on/off nur in Schritten 0–2 => Timer stoppen wenn am Ende If (GIDir = 1 And GIStep = 2) Or (GIDir = -1 And GIStep = 0) Then GITimer.Enabled = False End If End Sub Sub SetShadowOpacityAndGIOverhead() fGIOn.Opacity = (ShadowOpacityGIOn / 2) * GIStep fGIOn.IntensityScale = (GIStep / 2) fGIUV.Opacity = (ShadowOpacityUVOn / 2) * (2 - GIStep) fGIUV.IntensityScale = (2 - GIStep) GIOverhead.IntensityScale = GIStep / 2 End Sub
75 downloads
