Thanks a lot JP!!
Seems like Brandrew (a brandnew VP dev (pun intended)) has found the reasons and i hope i nailed the actual VP code piece that was responsible for it (issue: Harem Kicker destroys active ball, then it is immediately used for panning the sound effect, which is legal, but most likely is/was wrong in the VP core code).
UPDATED TOTAN to 1.0.1
(download from my web site)
Thanks! I see the error in the script. I wrote:
Sub HaremSneak_Hit:Me.DestroyBall:playsound "fx_hole-enter", 0, 1, pan(ActiveBall):SubwayHandler 11:End Sub
And it should have been the way around, this is: first play the sound and then destroy the ball. Like this:
Sub HaremSneak_Hit:PlaySound "fx_hole-enter", 0, 1, pan(ActiveBall):Me.DestroyBall:SubwayHandler 11:End Sub
I have had this error before on other tables, and I always thought it was because of the new lights code and the graphic card drivers, because I used to update the drivers and the error was gone (?!).
But it is good Brandrew found the error! And maybe the error was good for something if the VP code can be fixed so when this happen again the table doesn't quit.