@angmarg52
@worldofVP
i just played, im good but no pinball wizard.
Ok,mine was a very definite question, I'll explain to you, with this I don't mean that you did it, pay attention to this ....
if we close the three ways to the drain, (with walls) we could also make a trillion points .... but at the end fp will give you an error because it has a maximum point limit of about 999.999.999, if I remember correctly .... .that with bam with this code
xBAM.FixScore has been fixed.
but let's go back to the table, the real one foresees 6 digits, as Angelo did, now if "Gottlieb" decided so.....
1) it is because in this machine she thought that it was not possible to total no more than 999.999, even with 5 balls per token
2) maybe if you exceed a million the system reset the whole score to 0 (just a guess) ,
now here in this virtual in FP, if you have a super lucky game, you exceed the million ..... but here it is at the discretion of the author of the table, or add another digital, or put a condition that reset the score when it arrives or exceeds one million...like this below
Sub AddScore(points)
If (fpTilted = FALSE) Then
' add the points to the current players score variable
nvScore(CurrentPlayer) = nvScore(CurrentPlayer) + points
ResetScore
Select Case (CurrentPlayer)
Case 1: DispSeg1.AddValue(points)
Overlay8.frame(1)
Light5.state=bulbblink:Light8.state=Bulboff:z1=1 : Control_Player()
Case 2: DispSeg2.AddValue(points)
Overlay8.frame(2)
Light5.state=bulboff:Light6.state=Bulbblink:z1=2 :Control_Player()
Case 3: DispSeg3.AddValue(points)
Overlay8.frame(3)
Light6.state=Bulboff:Light7.state=Bulbblink:z1=3 :Control_Player()
Case 4: DispSeg4.AddValue(points)
Overlay8.frame(4)
Light7.state=Bulboff:Light8.state=Bulbblink:z1=4 : Control_Player()
End Select
Hudseg1.setvalue(nvScore(CurrentPlayer))
End if
' you may wish to check to see if the player has gotten a replay
End Sub
Sub ResetScore()
if (nvScore(CurrentPlayer) >= 999999) Then
nvScore(CurrentPlayer) = 0
End if
End Sub
There must be a bug in the scoring?
no.....but I repeat it is at the discretion of the author, but you could insert one of my suggestions.
from the video you have not totaled more than a million .... as is foreseen by the "Gottlieg".