Jump to content

[New VPVR Alert]VR ROOM Pizza Time


Recommended Posts

  • 8 months later...

BUG REPORT:

There are 2 duplicate subroutines in the code:

 

ShooterEnd_Hit & AddScore

 

===================================================================================

Sub ShooterEnd_Hit:If ActiveBall.Z > 50  Then Me.TimerInterval=100:Me.TimerEnabled=1:End If:End Sub

 

Sub ShooterEnd_Hit
        If canskillshot = True Then
            skillarrow.state = 2
        End If
End Sub

=================================================================================

    Sub AddScore(points)
        If triplepoints Then    
            AddScore points*3

        Elseif doublepoints Then 
            AddScore points*2

        Else 
            AddScore points
        End If
    End Sub 

 

    Sub AddScore(points)
        If(Tilted = False) Then
            ' add the points to the current players score variable
            Score(CurrentPlayer) = Score(CurrentPlayer) + points
            If pspec(currentplayer) = 0 Then
                If Score(CurrentPlayer) > 5000000 Then
                    AwardSpecial
                    pspec(CurrentPlayer) = 1
                end if 
            end If
            ' update the score displays
            'DMDScore
            pUpdateScores
        End if
    End Sub
=================================================================================

 

Link to comment
Share on other sites

Create an account or sign in to comment

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

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
×
  • Create New...