Thank you for your hard work. It's really impressive!
What I would love to see is a way to select (increase) the nudge-sensity (globally) for all tables.
VPX is so great, but I liked nudging in VP9 much more. In VPX the Nudging is so light, sometimes I don't see anything happening on the table 
P.S.: Sorry for my bad english.
Increase the nudge sensitivity on all tables: this could be done in the core.vbs for all vpinmame tables, but since the core.vbs is used for both VP9 and VP10 then it won't work so very well
What I do in my tables is to add 3 extra lines in the script for the keyboard input, the one called Sub table1_KeyDown(ByVal Keycode). And there I can specify how hard I want the budge. In VP10 the value must be higher than in VP9, the values in the core.vbs are adjusted for the old VP, so for the best nudge in VP10 we need to add those lines. For example, in AFM the lines are:
Sub table1_KeyDown(ByVal Keycode)
If keycode = LeftTiltKey Then Nudge 90, 5:PlaySound SoundFX("fx_nudge",0), 0, 1, -0.1, 0.25
If keycode = RightTiltKey Then Nudge 270, 5:PlaySound SoundFX("fx_nudge",0), 0, 1, 0.1, 0.25
If keycode = CenterTiltKey Then Nudge 0, 6:PlaySound SoundFX("fx_nudge",0), 0, 1, 0, 0.25
And why I use the command "nudge" and not "vpmNudge" which should be more correct since it is a vpinamme table? The reason is because I want the rom to know that you have hit the table with a "normal strength" as it is defined in the core.vbs. But I want VP10 to nudge the table a little more. in VP9 a streng of 1 was considered normal, but in VP10 you need to use a force of 4 or more to move the table enough to hit the ball. If you use vpmNudge with a strength of 4 the table will tilt at the first hit 
So if a VP10 table does not have these lines it will use the standard nudge from the core.vbs, and it will be too weak for VP10.
But all this is ok if you use a keyboard for nudging, if you use any controller in a cabinet then I do not know how this can be changed since I guess other vbs files will be in use depending of the controller used. These files are in the scripts folder and they are called NudgePlugIn_xxxxxxxxxxx.vbs, but I do not know how to use them.
(And don't worry about your English, I'm Spanish so my English must look like Yoda speaking
)