Is anybody else getting "Line 29 - Variable is undefined: 'MyBall'" when they put a ball into the mini playfield in the upper left? I worked really hard to get the ball up there and then didn't get to see what happens...
Just change Myball to ActiveBall, you can find it wrong two times in the same code line.
But in the version I just downloaded is the name "ActiveBall" and line 29 is another one. The table is updated at 29.December 2014.
VP8 version has a bug in the code, VP9 version is fixed but is not for desktop but cabinet.
The VP8 bug is at LINE 259
Sub Trigger2_Hit:MyBall.VelX=MyBall.VelX*2:End Sub
Must be
Sub Trigger2_Hit:ActiveBall.VelX=ActiveBall.VelX*2:End Sub
The error means variable Myball is not defined, and as you can see the code here is making the ball going 2 times faster
Edited by waffenspain, 12 January 2017 - 01:58 AM.