Jump to content

Viper Night Drivin (SEGA 1998) German Altsound - Pinballpunks

    Create an account or sign in to download this
download_no_perm
996 Views
75 Downloads
5 From 1 review
34.37 MB File Size
Pinballpunks Created by

1 Screenshot

About This File

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 02 => 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

 

Edited by Blahblah
changes in text

User Feedback

Create an account or sign in to leave a review

You need to be a member in order to leave a review

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

arcadefreak

   1 of 1 member found this review helpful 1 / 1 member

Amazing Blahblah :-)!

Nice weekend and thank you for your time and your creations!

Thank you for the optimized ScriptCode.

×
  • Create New...