Very nice table Groni! I never thought it would be possible to have a second screen on top of the playfield and make it disappear. It works very well

table looks awsome in my cabinet!!!!!only problem is i cant play it...i get way too much stutter.......any ideas???thx
A fast computer won't have trouble playing, but a slower computer computer will notice the alpha ramps refreshing TWICE. I tried to explain that to zedonius, but he didn't got it. The script is now refreshing the alpha ramps twice. If you take a look at the parts of the script that comes from my tables, for example the plunger or the alpha ramps fading subs, you'll see something like this:
PRefresh.State = ABS(PRefresh.state -1)
or
r.State = ABS(r.state -1)
This means switch the refreshing light the other way. If it is on then turn it off, and if it is off then turn it on.
This means just one refresh for the alpha ramps on top of the light.
Now on the rest of the script you'll find things like this:
upfrefresh.state=1:upfrefresh.state=0
This means refresh the alpha ramps TWICE on top of of the light.
And a slower computer will notice that the ramps are refreshing twice.
So change all those lines with
upfrefresh.state= ABS(upfrefresh.state -1)
There are many lights with different names, so it will take while to change them all. Search for "state" in the script and when you find a light.state=1 followed by a light.state=0 the you know you can change that for a light.state=ABS(light.state-1)
I have a core2 duo at 3Ghz and I don't notice any difference, but I guess a slower computer will notice that.
-----
Now, about the analog plunger:
The analog plunger has 25 positions. I designed the analog sub to use 12 plunger images. I see Groni used just 10 images, so when you move the plunger all the way back the script will complain with a array error.
To fix that, find the line 353:
Plungers = Array(Plunger1, Plunger2, Plunger3, Plunger4, Plunger5, Plunger6, Plunger7, Plunger8, Plunger9, Plunger10, Plunger10)
and change it with
Plungers = Array(Plunger1, Plunger2, Plunger3, Plunger4, Plunger5, Plunger6, Plunger7, Plunger8, Plunger9, Plunger10, Plunger10, Plunger10, Plunger10)
So the array has 13 elements and the analog plunger will not complain.
JP